Get Accounts
curl --request GET \
--url https://sandbox-api.borderless.xyz/v1/accounts \
--header 'Authorization: Bearer <token>'{
"hasMore": true,
"data": [
{
"id": "<string>",
"name": "<string>",
"addresses": [
{
"id": "<string>",
"address": "<string>"
}
],
"assets": [
{
"id": "<string>",
"address": "<string>"
}
],
"fiats": [
{
"id": "<string>"
}
],
"identityId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Accounts
Get Accounts
Retrieve a list of Accounts with pagination support. Use query parameters startingAfter and limit to navigate results.
GET
/
v1
/
accounts
Get Accounts
curl --request GET \
--url https://sandbox-api.borderless.xyz/v1/accounts \
--header 'Authorization: Bearer <token>'{
"hasMore": true,
"data": [
{
"id": "<string>",
"name": "<string>",
"addresses": [
{
"id": "<string>",
"address": "<string>"
}
],
"assets": [
{
"id": "<string>",
"address": "<string>"
}
],
"fiats": [
{
"id": "<string>"
}
],
"identityId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
A prefix to filter accounts by name.
Example:
"Main"
The id of the identity to filter accounts.
Example:
"cm9db4g2s2r7ro224ra6u1qvh"
Id used to retrieve results that come after the specified item.
Response page limit. Min 1, Max 100, Default value is 10.
Was this page helpful?
⌘I