Skip to content

Get All Currencies

This method retrieves all currencies.

shell
GET: {{endpoint}}/v1/currency/list

Response Parameters

The final response in the stream also includes additional data about the generation:

  • data: (Array) the currency lists
    • id: the id of the currency
    • coingecko_id: the coingecko id of the currency
    • custody_type: the custody type of the currency
    • type: the type of the currency
    • category: the category of the currency
    • name: the name of the currency
    • symbol: the symbol of the currency
    • decimals: the decimals of the currency
    • created_at: the created at date of the currency
Example Response
json
{
  "data": [
    {
      "id": "f2b48194-e3dd-4a6c-9748-1bbe0f4302f2",
      "coingecko_id": "USDT",
      "custody_type": "SELF",
      "type": "CRYPTO",
      "category": "STABLECOIN",
      "name": "USD Tether",
      "symbol": "USDT",
      "decimals": 6,
      "created_at": "2024-10-14T07:02:35.586Z"
    },
    { ... }
  ]
}
json
{
  "error": "Error message"
}
json
{
  "error": "Forbidden"
}