Get multiple accounts
Developing
GET
/accounts
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/accounts?parentId&limit&next' \
--header 'x-api-key;' \
--header 'User-Agent;'
Response Response Example
{
"data": [
{
"id": "string",
"identityId": "string",
"externalId": "string",
"type": "string",
"custody": "string",
"balance": "string",
"availableFunds": "string",
"currency": "string",
"name": "string",
"accountNumber": "string",
"accountHolder": "string",
"status": "string",
"parentId": "string",
"subAccounts": {
"balance": "string",
"availableFunds": "string"
},
"custodyBankAccount": {
"accountNumber": "string",
"bank": "string",
"currency": "string",
"typeAccount": "string",
"country": "string"
}
}
],
"pagination": {
"pagination": {
"count": 0,
"next": 0,
"previous": 0,
"total": 0
},
"results": [
{}
]
}
}
Request
Query Params
parentId
string
optional
limit
string
optional
next
string
optional
Header Params
x-api-key
string
optional
User-Agent
string
optional
Responses
Modified at 2025-02-01 19:44:10