GET
/
global
/
market_cap_chart
💼 Global Market Cap Chart Data
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/global/market_cap_chart \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "market_cap_chart": {
    "market_cap": [
      [
        1741777205268,
        2766533155566
      ],
      [
        1741780800808,
        2784800753369
      ],
      [
        1741784401211,
        2819864149659
      ]
    ],
    "volume": [
      [
        1741777205268,
        141144791036
      ],
      [
        1741780800808,
        140341392201
      ],
      [
        1741784401211,
        146221695370
      ]
    ]
  }
}

Note

  • CoinGecko equivalent page: https://www.coingecko.com/en/global-charts.
  • Data Granularity (auto):
    • 1 day from now = hourly data
    • 2 days & above from now = daily data
  • Exclusive for all Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).
  • The last completed UTC day (00:00) is available 5 minutes after midnight on the next UTC day (00:05). The cache will always expire at 00:05 UTC. If you wish to get the latest daily data (00:00 UTC), you can make request at 00:05 UTC or later.
  • Cache / Update Frequency: every 1 minute.

Authorizations

x-cg-pro-api-key
string
header
required

Query Parameters

days
enum<string>
required

data up to number of days ago Valid values: any integer

Available options:
1,
7,
14,
30,
90,
180,
365,
max
vs_currency
string
default:usd

target currency of market cap, default: usd *refers to /simple/supported_vs_currencies

Example:

"usd"

Response

200 - application/json

Get cryptocurrency global market cap chart data

market_cap_chart
object