Assets API

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 parameterPurpose
cursorOpaque cursor returned by the previous response
limitMaximum number of items
chainFilter by chain identifier
assetFilter by asset symbol
statusFilter by availability status
tokenStandardFilter 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 nextCursor as 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.