> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tbox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List your tradable assets

> Returns the assets you can trade — the base and quote assets of the
      products enabled for your account. With no product whitelist this is every
      asset used by the platform's enabled products; with a whitelist it narrows
      to the assets your allowed products use.

      **Caching**
      Response is suitable for client-side caching; the asset catalog changes infrequently.



## OpenAPI

````yaml /api-reference/openapi.json get /asset
openapi: 3.0.0
info:
  title: Xenios Trading API
  description: >-
    Place and manage orders, stream live market and account data, and read
    wallets, deposits and reference data over one authenticated gateway. All
    protected endpoints are authenticated with an HMAC-SHA256 request signature
    (see the Authentication guide). Decimal amounts are strings; timestamps are
    ISO-8601. Successful responses are wrapped in a standard { statusCode,
    success, message, data } envelope.
  version: '1.0'
  contact: {}
servers:
  - url: https://<your-host>/api/v1/trading
    description: Development gateway. Prefix every trading path with this base URL.
security:
  - xenios-hmac: []
tags:
  - name: Orders
    description: >-
      Place, cancel, and read your orders. Placement is idempotent on
      client_order_id.
  - name: Order Book
    description: Top-of-book depth snapshots for a trading pair.
  - name: Products
    description: Tradable products and pairs, plus OHLCV candles for charting.
  - name: Assets
    description: The assets available to your account.
  - name: Wallets
    description: Generate deposit addresses and read deposit history.
  - name: Account
    description: Your trading fee and effective account settings.
  - name: Health
    description: Liveness and readiness probes.
paths:
  /asset:
    get:
      tags:
        - Assets
      summary: List your tradable assets
      description: |-
        Returns the assets you can trade — the base and quote assets of the
              products enabled for your account. With no product whitelist this is every
              asset used by the platform's enabled products; with a whitelist it narrows
              to the assets your allowed products use.

              **Caching**
              Response is suitable for client-side caching; the asset catalog changes infrequently.
      operationId: listAssets
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/Asset'
      security:
        - xenios-hmac:
            - read:market-data
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code echoed in the body.
          example: 200
        success:
          type: boolean
          description: True for success responses.
          example: true
        message:
          type: string
          description: Human-readable status message.
          example: Request processed successfully
      required:
        - statusCode
        - success
    Asset:
      type: object
      properties:
        createdAt:
          type: string
          description: Row creation timestamp (ISO 8601).
          format: date-time
          example: '2026-03-12T09:21:44.000Z'
        updatedAt:
          type: string
          description: Row last-update timestamp (ISO 8601).
          format: date-time
          example: '2026-05-08T14:03:11.000Z'
        id:
          type: string
          description: Internal UUID of the asset.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        name:
          type: string
          description: Long-form asset name (e.g. Bitcoin).
          example: Bitcoin
        symbol:
          type: string
          description: Asset symbol (e.g. BTC).
          example: BTC
        tradingSupported:
          type: boolean
          description: Whether this asset can be traded.
          example: true
        explorerUrl:
          type: string
          description: URL pattern for an on-chain block explorer.
          example: https://www.blockchain.com/explorer/addresses/btc/{address}
        xenios_available:
          type: boolean
          description: Whether the Xenios platform currently lists this asset.
          default: false
          example: true
      required:
        - name
        - symbol
        - tradingSupported
        - explorerUrl
  securitySchemes:
    xenios-hmac:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        HMAC-SHA256 authentication. Sign every request and send X-API-KEY,
        X-API-SIGNATURE, X-API-TIMESTAMP and X-API-NONCE (see the Authentication
        guide). Each route also requires a specific claim on your API key (e.g.
        read:orders, write:orders, read:account, read:market-data).

````