Coins

Coins List with Market Data

This endpoint allows you to query all the supported coins with price, market cap, volume and market related data

get/coins/markets

Query parameters

vs_currencystring required
Example:usd

target currency of coins and market data *refers to /simple/supported_vs_currencies.

idsstring

coins' IDs, comma-separated if querying more than 1 coin. *refers to /coins/list.

namesstring

coins' names, comma-separated if querying more than 1 coin.

symbolsstring

coins' symbols, comma-separated if querying more than 1 coin.

include_tokens'top' | 'all'

for symbols lookups, specify all to include all matching tokens Default top returns top-ranked tokens (by market cap or volume)

categorystring
Example:layer-1

filter based on coins' category *refers to /coins/categories/list.

order'market_cap_asc' | 'market_cap_desc' | 'volume_asc' | 'volume_desc' | 'id_asc' | 'id_desc'

sort result by field, default: market_cap_desc

per_pagenumber

total results per page, default: 100 Valid values: 1...250

pagenumber

page through results, default: 1

sparklineboolean

include sparkline 7 days data, default: false

price_change_percentagestring

include price change percentage timeframe, comma-separated if query more than 1 timeframe Valid values: 1h, 24h, 7d, 14d, 30d, 200d, 1y

locale'ar' | 'bg' | 'cs' | 'da' | 'de' | 'el' | 'en' | 'es' | 'fi' | 'fr' | 'he' | 'hi' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'ko' | 'lt' | 'nl' | 'no' | 'pl' | 'pt' | 'ro' | 'ru' | 'sk' | 'sl' | 'sv' | 'th' | 'tr' | 'uk' | 'vi' | 'zh' | 'zh-tw'

language background, default: en

precision'full' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15' | '16' | '17' | '18'

decimal place for currency price value

Response

List all coins with market data

idstring

coin ID

symbolstring

coin symbol

namestring

coin name

imagestring

coin image url

current_pricenumber nullable

coin current price in currency

market_capnumber nullable

coin market cap in currency

market_cap_ranknumber nullable

coin rank by market cap

fully_diluted_valuationnumber nullable

coin fully diluted valuation (fdv) in currency

total_volumenumber nullable

coin total trading volume in currency

high_24hnumber nullable

coin 24hr price high in currency

low_24hnumber nullable

coin 24hr price low in currency

price_change_24hnumber nullable

coin 24hr price change in currency

price_change_percentage_24hnumber nullable

coin 24hr price change in percentage

market_cap_change_24hnumber nullable

coin 24hr market cap change in currency

market_cap_change_percentage_24hnumber nullable

coin 24hr market cap change in percentage

circulating_supplynumber nullable

coin circulating supply

total_supplynumber nullable

coin total supply

max_supplynumber nullable

coin max supply

athnumber nullable

coin all time high (ATH) in currency

ath_change_percentagenumber nullable

coin all time high (ATH) change in percentage

ath_datestring date-time nullable

coin all time high (ATH) date

atlnumber nullable

coin all time low (atl) in currency

atl_change_percentagenumber nullable

coin all time low (atl) change in percentage

atl_datestring date-time nullable

coin all time low (atl) date

last_updatedstring date-time

coin last updated timestamp

Example response

[
  {
    "id": "bitcoin",
    "symbol": "btc",
    "name": "Bitcoin",
    "image": "<https://assets.coingecko.com/coins/images/1/large/bitcoin.png?1696501400>",
    "current_price": 70187,
    "market_cap": 1381651251183,
    "market_cap_rank": 1,
    "fully_diluted_valuation": 1474623675796,
    "total_volume": 20154184933,
    "high_24h": 70215,
    "low_24h": 68060,
    "price_change_24h": 2126.88,
    "price_change_percentage_24h": 3.12502,
    "market_cap_change_24h": 44287678051,
    "market_cap_change_percentage_24h": 3.31157,
    "circulating_supply": 19675987,
    "total_supply": 21000000,
    "max_supply": 21000000,
    "ath": 73738,
    "ath_change_percentage": -4.77063,
    "ath_date": "2024-03-14T07:10:36.635Z",
    "atl": 67.81,
    "atl_change_percentage": 103455.83335,
    "atl_date": "2013-07-06T00:00:00.000Z",
    "roi": null,
    "last_updated": "2024-04-07T16:49:31.736Z"
  }
]

Changes