Lists accounts with filtering and pagination options.
/accountsHeaders
Bearer access token returned by the authentication endpoint.
The API key used for authentication when making requests to the API Gateway.
API version selector for Conomy endpoints. Use 24-04-2025 for the current version.
Identifies the application making the request.
Query parameters
Parent's account Id
Account number of the specific account
External Id of the specific account
Identity Id owner of the account
Filters accounts by account type.
CHECKINGASSETSAVINGSESCROWFEEFilters accounts by currency code (ISO 4217).
Status of the account
Created at start (DD/MM/YYYY)
Created at end (DD/MM/YYYY)
Specifies the maximum number of items to return in a single request.
A cursor indicating the position of the last retrieved item.
A cursor indicating how many items to skip from the request
Responses
paginationobjectrequiredpaginationobjectrequiredCursor-based pagination metadata (limit, cursor, hasMore).
countintegerrequiredcount of items shown up to the moment
nextintegerrequirednext cursor to be used in offset to display the next page
previousintegerrequiredprevious cursor to be used in offset to display the previous page
totalintegerrequiredtotal count of items to be shown
resultsobject[]requiredItems from the current page
idstringrequiredUnique identifier for the internal service.
identityIdstringrequiredIdentifier linking the internal account to an organization or user.
externalIdstringrequiredExternal reference identifier for integrations.
typestringrequiredCHECKINGFiat liquid account used for spending, withdrawals, or operations.ASSETTracks non-operational or financial assets.SAVINGSHolds funds intended for savings or long-term storage.ESCROWTemporary routing account for incoming funds.FEEHolds all fees collected via FEE or FEE_INVOICE.custodystringrequiredIndicates the custody type managing the internal account.
balancestring/^\d+(\.\d+)?$/requiredTotal balance available in the internal account.
availableFundsstring/^\d+(\.\d+)?$/requiredAmount of funds available for transactions.
currencystringrequiredSpecifies the currency used, following the ISO 4217 standard for fiat currencies (e.g., CLP, ARS, MXN). Go to the currencies page for the complete list of supported values.
namestringrequiredA friendly name assigned to the internal account.
accountNumberstringrequiredInternal reference number for the account.
accountHolderstringrequiredName of the entity or user owning the internal account.
statusstringrequiredThe current status of the account (e.g., PENDING, ACTIVE, BLOCKED).
parentIdstringrequiredIdentifier of the parent account if this is a sub-account.
subAccountsobjectDetails of sub-accounts associated with this internal account.
balancestring/^\d+(\.\d+)?$/requiredTotal balance of the sub-account.
availableFundsstring/^\d+(\.\d+)?$/requiredFunds available for use within the sub-account.
custodyBankAccountobjectDetails of the custody bank account linked to this internal account.
accountNumberstringrequiredThe bank account number.
bankstringrequiredThe name of the bank where the account is held.
currencystringrequiredSpecifies the currency used, following the ISO 4217 standard for fiat currencies (e.g., CLP, ARS, MXN). Go to the currencies page for the complete list of supported values.
typeAccountstringThe type of bank account. CHECKING_ACOUNT, SAVINGS
countrystringrequiredCountry of operations for the entity, specified using the ISO 3166-1 alpha-3 standard (e.g., CHL, USA, MEX). Go to the countries page for the complete list of supported values.
GET /sandbox/accounts HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0{
"pagination": {
"pagination": {
"count": 0,
"next": 0,
"previous": 0,
"total": 0
},
"results": [
{
"id": null,
"identityId": null,
"externalId": null,
"type": null,
"custody": null,
"balance": null,
"availableFunds": null,
"currency": null,
"name": null,
"accountNumber": null
}
]
}
}