curl --request GET \
--url https://sandbox-api.borderless.xyz/v1/accounts \
--header 'Authorization: Bearer <token>'{
"hasMore": true,
"data": [
{
"id": "<string>",
"type": "web3",
"pfi": "Bridge",
"web3Provider": "Utila",
"name": "<string>",
"addresses": [
{
"id": "<string>",
"asset": "POL",
"address": "<string>"
}
],
"assets": [
{
"id": "<string>",
"asset": "POL",
"address": "<string>"
}
],
"fiats": [
{
"id": "<string>",
"fiat": "USD"
}
],
"identityId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Retrieve a list of Accounts with pagination support. Use query parameters startingAfter and limit to navigate results.
curl --request GET \
--url https://sandbox-api.borderless.xyz/v1/accounts \
--header 'Authorization: Bearer <token>'{
"hasMore": true,
"data": [
{
"id": "<string>",
"type": "web3",
"pfi": "Bridge",
"web3Provider": "Utila",
"name": "<string>",
"addresses": [
{
"id": "<string>",
"asset": "POL",
"address": "<string>"
}
],
"assets": [
{
"id": "<string>",
"asset": "POL",
"address": "<string>"
}
],
"fiats": [
{
"id": "<string>",
"fiat": "USD"
}
],
"identityId": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.borderless.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A prefix to filter accounts by name.
"Main"
The id of the identity to filter accounts.
"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?