List Tradable Assets
GET/b2b/quotes/assets
Retrieve the list of tradable assets available for a specific user.
This endpoint returns asset information including trading status, decimal precision, and any restrictions on trading pairs. Use this to determine which assets a user can trade or include in quote requests.
Filtering by Tradable Status
The tradable query parameter controls which assets are returned based on their
trading status:
| Value | Behavior |
|---|---|
true | Only returns assets with tradable status |
false | Only returns assets with disabled or soon status |
| (omitted) | Returns all assets regardless of status |
Asset Status Values
| Status | Description |
|---|---|
tradable | Asset is available for trading |
disabled | Asset is currently disabled and cannot be traded |
soon | Asset will be available for trading soon |
Disabled Against
The disabled_against field lists assets that cannot be traded against this asset.
For example, if BTC has disabled_against: ["AED", "YB"], then BTC cannot be
quoted against AED or YB.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 408
- 409
- 429
- 500
- 503
Assets retrieved successfully
Bad Request — the request was malformed or contained invalid parameters. Not retryable.
Unauthorized — authentication failed or credentials are missing/invalid. Not retryable.
Forbidden — the authenticated user does not have permission to perform this action. Not retryable.
Not Found — the requested resource does not exist. Not retryable.
Request Timeout — the request took too long to process. Retryable.
Conflict — the request conflicts with the current state of the resource. Retryable in some cases (see error code).
Too Many Requests — rate limit exceeded. Retryable with backoff.
Internal Server Error — an unexpected error occurred. Generally retryable.
Service Unavailable — the service is temporarily unavailable. Retryable.