Get All Currencies
This method retrieves all currencies.
shell
GET: {{endpoint}}/v1/currency/listResponse Parameters
The final response in the stream also includes additional data about the generation:
data: (Array) the currency listsid: the id of the currencycoingecko_id: the coingecko id of the currencycustody_type: the custody type of the currencytype: the type of the currencycategory: the category of the currencyname: the name of the currencysymbol: the symbol of the currencydecimals: the decimals of the currencycreated_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"
}