Create account
Account Management
Create account
Open a new ledger account for the authenticated user.
POST
Create account
Requires
X-Api-Key, X-Api-Secret, and Authorization: Bearer <user-jwt> headers. See Authentication for details.id used across deposit, transfer, and transaction endpoints.
Request
Body
| Field | Type | Required | Description |
|---|---|---|---|
description | string | Yes | Human-readable name for the account |
asset | string | Yes | Currency: "USDC" |
Response
201 Created| Field | Type | Description |
|---|---|---|
id | number | Unique account ID — use this in deposit, transfer, and transaction requests |
description | string | Name provided at creation |
asset | string | Currency of the account |
type | string | "LIABILITY" |
balance | number | Initial balance in smallest unit (always 0 at creation) |