CryptoCompare · Example Payload

Cryptocompare Getsinglesymbolprice Example

CryptocurrencyMarket DataReference RatesNewsSocialBlockchainOn-ChainOrder BookStreamingIndex

Cryptocompare Getsinglesymbolprice Example is an example object payload from CryptoCompare, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=USD,EUR",
    "headers": {
      "Authorization": "Apikey {YOUR_API_KEY}"
    }
  },
  "response": {
    "status": 200,
    "headers": {"Content-Type": "application/json"},
    "body": {
      "USD": 73826.5,
      "EUR": 63304.20
    }
  }
}