GET
/
rates
/
{id}
curl --request GET \
  --url https://api.coincap.io/v2/rates/{id} \
  --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.

Path Parameters

id
string
required

Unique identifier for the asset or fiat currency.

Example:

"bitcoin"

Response

200 - application/json
Detailed rate information for the specified ID.
data
object