API endpoints
Assets API
Use the Assets API to discover the chains and assets currently available to the authenticated client. Do not hard-code network support from marketing material.
List supported assets
GET /api/v1/assets
Required scope: wallets:read
The response is cursor-paginated and contains items plus an opaque nextCursor.
| Query parameter | Purpose |
|---|---|
cursor | Opaque cursor returned by the previous response |
limit | Maximum number of items |
chain | Filter by chain identifier |
asset | Filter by asset symbol |
status | Filter by availability status |
tokenStandard | Filter by token standard |
Integration guidance
- Read the API before offering a chain or asset in your product.
- Store the canonical chain and asset identifiers exactly as returned.
- Re-check availability before wallet creation or withdrawal.
- Treat an empty
nextCursoras the end of the collection.
Errors
The endpoint documents 400, 401, 403, 413, and 500. Common codes include INVALID_QUERY_PARAMETER, INVALID_CURSOR, INVALID_SIGNATURE, IP_NOT_ALLOWED, and INSUFFICIENT_SCOPE.