GET
/
assets
/
{id}
curl --request GET \
  --url https://api.coincap.io/v2/assets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "bitcoin",
  "rank": 1,
  "symbol": "BTC",
  "name": "Bitcoin",
  "supply": "19788862.0000000000000000",
  "maxSupply": "21000000.0000000000000000",
  "marketCapUsd": "1904557171625.0952172577833640",
  "volumeUsd24Hr": "12724040223.1452060699561802",
  "priceUsd": "96243.8957644504882220",
  "changePercent24Hr": "0.9762522061124105",
  "vwap24Hr": "95583.4674577419449477"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The unique identifier of the asset

Example:

"bitcoin"

Response

200 - application/json

Detailed information about the cryptocurrency.

The response is of type object.