Endpoint to get the accounts by a certain filter, could be the id, identityId, accountNumber.
/accounts/{id}Headers
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.
Path parameters
Unique identifier for the account.
Responses
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/{id} 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{
"id": "string",
"identityId": "string",
"externalId": "string",
"type": "CHECKING",
"custody": "string",
"balance": "string",
"availableFunds": "string",
"currency": "string",
"name": "string",
"accountNumber": "string"
}