Retrieve a single account by ID, including its current balances and attached funding methods. Balances are fetched from the ledger in real time.
curl --request GET \
--url https://api.nxos.io/v1/accounts/{accountId} \
--header 'Authorization: <authorization>'{
"object": "account",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"name": "Main",
"description": null,
"isPrimary": true,
"status": "ACTIVE",
"fundingMethods": [],
"balances": [
{
"object": "balance",
"asset": "USD",
"amount": "15000.00"
},
{
"object": "balance",
"asset": "USDC",
"amount": "5000.000000"
}
],
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}Bearer token. Format: Bearer <api_key>
The request has succeeded.
Detailed view of a financial account, including balances and funding methods.
Object type. Always account.
account Unique account identifier.
Display name for the account.
Optional description of the account's purpose.
Whether this is the organization's primary account.
Current account status.
ACTIVE, SUSPENDED, CLOSED Funding methods attached to this account.
Show child attributes
Current balances per asset held in this account.
Show child attributes
When the account was created.
When the account was last updated.
curl --request GET \
--url https://api.nxos.io/v1/accounts/{accountId} \
--header 'Authorization: <authorization>'{
"object": "account",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"name": "Main",
"description": null,
"isPrimary": true,
"status": "ACTIVE",
"fundingMethods": [],
"balances": [
{
"object": "balance",
"asset": "USD",
"amount": "15000.00"
},
{
"object": "balance",
"asset": "USDC",
"amount": "5000.000000"
}
],
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}