Skip to main content
GET
/
v1
/
accounts
/
{id}
Get an Account by id
curl --request GET \
  --url https://sandbox-api.borderless.xyz/v1/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "addresses": [
    {
      "id": "<string>",
      "asset": "POL",
      "address": "<string>"
    }
  ],
  "identityId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Successfully retrieved Account data.

id
string
required
name
string
required
addresses
object[]
required
identityId
string
required
createdAt
string<date-time>
required