GET
/
assets
/
{id}
/
markets
curl --request GET \
  --url https://api.coincap.io/v2/assets/{id}/markets \
  --header 'Authorization: Bearer <token>'
{
  "exchangeId": "<string>",
  "baseId": "<string>",
  "quoteId": "<string>",
  "baseSymbol": "<string>",
  "quoteSymbol": "<string>",
  "volumeUsd24Hr": 123,
  "priceUsd": 123,
  "volumePercent": 123
}

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 asset ID to fetch market data for (e.g., bitcoin).

Example:

"bitcoin"

Query Parameters

limit
integer
default:5

The maximum number of results to return

Required range: x <= 2000
offset
integer
default:1

The index of the first result to return (useful for pagination)

Response

200 - application/json

Successfully retrieved market data

The response is of type object.