GET
/
profiles
/
addresses
curl --request GET \
  --url https://api.live.paisr.tech/{version}/profiles/addresses \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "addresses": [
      {
        "id": "adr_123456",
        "address_line_1": "Example Street 10",
        "address_line_2": "Example Street 11",
        "address_line_3": "Example Street 12",
        "city": "Paramaribo",
        "state": "Kwatta",
        "verified": true
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved the list of profile addresses.
success
boolean
Example:

true

data
object