v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Prices

Get prices

Prices for a requested set of coins. Pass at least one selector — ids, slugs or symbols (up to 100 combined). meta.currency echoes the conversion target (USD unless convert is set).

get/api/v1/prices

Query parameters

idsstring nullable

Coin ids to price (CSV). At least one of ids, slugs or symbols is required; the three lists cap at 100 selectors combined. This field is required when none of <code>slugs</code> and <code>symbols</code> are present. Must not be greater than 1000 characters.

Example:38,39

Coin ids to price (CSV). At least one of ids, slugs or symbols is required; the three lists cap at 100 selectors combined. This field is required when none of <code>slugs</code> and <code>symbols</code> are present. Must not be greater than 1000 characters.

slugsstring nullable

Coin slugs to price (CSV). At least one of ids, slugs or symbols is required. This field is required when none of <code>ids</code> and <code>symbols</code> are present. Must not be greater than 2000 characters.

Example:bitcoin,ethereum

Coin slugs to price (CSV). At least one of ids, slugs or symbols is required. This field is required when none of <code>ids</code> and <code>symbols</code> are present. Must not be greater than 2000 characters.

symbolsstring nullable

Coin symbols to price (CSV, case-insensitive). At least one of ids, slugs or symbols is required. This field is required when none of <code>ids</code> and <code>slugs</code> are present. Must not be greater than 1000 characters.

Example:BTC,ETH

Coin symbols to price (CSV, case-insensitive). At least one of ids, slugs or symbols is required. This field is required when none of <code>ids</code> and <code>slugs</code> are present. Must not be greater than 1000 characters.

convert'USD' | 'EUR' | 'JPY' | 'BGN' | 'CZK' | 'DKK' | 'GBP' | 'HUF' | 'PLN' | 'RON' | 'SEK' | 'CHF' | 'ISK' | 'NOK' | 'HRK' | 'RUB' | 'TRY' | 'AUD' | 'BRL' | 'CAD' | 'CNY' | 'HKD' | 'IDR' | 'ILS' | 'INR' | 'KRW' | 'MXN' | 'MYR' | 'NZD' | 'PHP' | 'SGD' | 'THB' | 'ZAR' | 'ARS' | 'DZD' | 'MAD' | 'TWD' nullable

Convert prices/marketcap into an active fiat currency by symbol (default USD). FX rates refresh ~twice daily.

Example:EUR

Convert prices/marketcap into an active fiat currency by symbol (default USD). FX rates refresh ~twice daily.

Response

Example response

{
  "data": [
    {
      "id": 38,
      "slug": "bitcoin",
      "symbol": "BTC",
      "name": "Bitcoin",
      "rank": 1,
      "price": "63520.780763913",
      "marketcap": 1264646594448.5,
      "volume_24h": 5345161962,
      "change_24h": 1.35,
      "change_7d": 4.98,
      "change_rank_24h": 0,
      "change_rank_7d": 0,
      "last_updated": "2026-06-27T10:34:17+00:00"
    },
    {
      "id": 39,
      "slug": "ethereum",
      "symbol": "ETH",
      "name": "Ethereum",
      "rank": 2,
      "price": "1672.4623100248",
      "marketcap": 203243220990.49,
      "volume_24h": 69585141532,
      "change_24h": 1.42,
      "change_7d": 7.56,
      "change_rank_24h": 0,
      "change_rank_7d": 0,
      "last_updated": "2026-06-12T09:32:14+00:00"
    }
  ],
  "meta": {
    "currency": "USD",
    "count": 2
  }
}