Skip to main content
GET
/
api
/
v1
/
exchanges
/
assets
List supported assets
curl --request GET \
  --url https://staging.qash.ai/api/v1/exchanges/assets
{
  "success": true,
  "data": {
    "assets": [
      {
        "code": "USD",
        "name": "US Dollar",
        "symbol": "$"
      },
      {
        "code": "COP",
        "name": "Colombian Peso",
        "symbol": "$"
      },
      {
        "code": "USDC",
        "name": "USD Coin",
        "symbol": "$"
      },
      {
        "code": "USDT",
        "name": "Tether",
        "symbol": "$"
      },
      {
        "code": "COPM",
        "name": "Colombian Peso M",
        "symbol": "$"
      }
    ]
  }
}
This endpoint is public and does not require authentication.
Use this endpoint to populate asset selectors in client applications, widgets, and checkout flows.

Response

200 - application/json

Supported assets returned successfully.

success
boolean
required
Example:

true

data
object
required