cURL
curl --request GET \ --url https://api.coincap.io/v2/rates \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "bitcoin", "symbol": "BTC", "currencySymbol": "₿", "rateUsd": "30000.00", "type": "crypto" } ] }
Retrieve a list of all currency rates, including cryptocurrencies and fiat currencies.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A list of all available currency rates.
Show child attributes
Unique identifier for the asset or fiat currency.
"bitcoin"
Common symbol used to represent the asset or fiat currency.
"BTC"
Symbol used to represent the currency, if applicable.
"₿"
Conversion rate to USD.
"30000.00"
Type of currency, either "fiat" or "crypto".
"crypto"