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

# List supported assets

> Return the fiat currencies and digital assets currently available for conversion.

<Note>
  This endpoint is public and does not require authentication.
</Note>

Use this endpoint to populate asset selectors in client applications, widgets, and checkout flows.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/exchanges/assets
openapi: 3.1.0
info:
  title: QASH API
  description: >-
    QASH endpoints for exchange rates, cards, and partner-facing financial
    workflows.
  version: 1.0.0
servers:
  - url: https://api.qash.ai
    description: Partner API (Production)
  - url: https://staging.qash.ai
    description: Staging
  - url: https://app.qash.ai
    description: Production
security: []
tags:
  - name: Exchange rates
    description: Public endpoints for supported assets and TRM-based quotes.
  - name: Cards
    description: >-
      Authenticated partner endpoints for card state, controls, limits, and
      balances.
  - name: Users
    description: Admin endpoints for user provisioning and account management.
paths:
  /api/v1/exchanges/assets:
    get:
      tags:
        - Exchange rates
      summary: List supported assets
      description: >-
        Returns the fiat currencies and digital assets currently available for
        conversion.
      operationId: listExchangeAssets
      responses:
        '200':
          description: Supported assets returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetsResponse'
              examples:
                default:
                  summary: Supported assets
                  value:
                    success: true
                    data:
                      assets:
                        - code: USD
                          name: US Dollar
                          symbol: $
                        - code: COP
                          name: Colombian Peso
                          symbol: $
      security: []
components:
  schemas:
    AssetsResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          properties:
            assets:
              type: array
              items:
                $ref: '#/components/schemas/Asset'
          required:
            - assets
      required:
        - success
        - data
    Asset:
      type: object
      properties:
        code:
          description: Asset code.
          type: string
        name:
          description: Display name for the asset.
          type: string
        symbol:
          description: Symbol used to represent the asset.
          type: string
      required:
        - code
        - name
        - symbol

````