GET
/
rates
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
A list of all available currency rates.
data
object[]