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

Authorizations

Authorization
string
header
required

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

Query Parameters

search by asset id (bitcoin) or symbol (BTC)

ids
string

query with multiple ids=bitcoin,ethereum,monero

limit
integer

Limit the number of results

offset
integer

offset

Response

200 - application/json
A list of all cryptocurrencies.

The response is of type object[].