List all accounts (fiat and crypto). Filter by customerId, type, or status.
API key issued at onboarding. Passed as a Bearer token in the Authorization header: Authorization: Bearer <api-key>. Identifies the caller and determines organization scope. Invalid or revoked keys return 401 with error type authentication_error.
Ed25519 or RSA-SHA256 asymmetric signature over the request payload (ADR-0015). Provides request integrity and non-repudiation. The signature covers the HTTP method, path, query string, request body, and timestamp. Invalid signatures return 401 with error type authentication_error.
Unix timestamp (seconds) of when the request was signed. Server rejects requests where the timestamp drifts beyond +/-60 seconds from server time to prevent replay attacks. Must match the timestamp used in the signature computation.
Maximum number of items to return. Default 50, max 200.
1 <= x <= 200Cursor for forward pagination. Return items created after the item with this ID. Mutually exclusive with ending_before.
Cursor for backward pagination. Return items created before the item with this ID. Mutually exclusive with starting_after.
Customer resource identifier.
^cus_[A-Za-z0-9]+$"cus_01953e1a5f4b7000"
Type of account. demand_deposit for fiat bank accounts, wallet for crypto, virtual for virtual accounts with no physical banking rails.
demand_deposit, wallet, virtual Lifecycle status of an account.
pending, active, suspended, closed Account list.
Unified ledger account for fiat and crypto assets. Replaces the V2 separation of /accounts and /wallets. The type field distinguishes demand_deposit (fiat), wallet (crypto), and virtual accounts. Use the type discriminator to determine which variant applies.
{
"id": "acc_01953e1a5f4b7002",
"customerId": "cus_01953e1a5f4b7000",
"type": "demand_deposit",
"status": "active",
"currency": "USD",
"label": "USD Operating Account",
"metadata": {},
"createdAt": "2026-02-23T12:00:00Z",
"updatedAt": "2026-02-23T12:00:00Z"
}Cursor-based pagination metadata. Returned on all list endpoints.