Skip to main content
GET
/
markets
Get current global cryptocurrency market data
curl --request GET \
  --url https://openapiv1.coinstats.app/markets \
  --header 'X-API-KEY: <api-key>'
{
  "marketCap": 4026535943695,
  "volume": 98765432101,
  "btcDominance": 42.5,
  "marketCapChange": -2.34,
  "volumeChange": 5.67,
  "btcDominanceChange": 0.89
}
1 credit per request
  • Total market capitalization
  • 24h trading volume
  • Bitcoin dominance
  • Market trends and indicators

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Get global market cap

marketCap
number
required

Total market capitalization of all cryptocurrencies in USD

Example:

4026535943695

volume
number
required

Total 24-hour trading volume across all cryptocurrencies in USD

Example:

98765432101

btcDominance
number
required

Bitcoin's percentage share of the total cryptocurrency market capitalization

Example:

42.5

marketCapChange
number
required

24-hour change in total market capitalization (percentage)

Example:

-2.34

volumeChange
number
required

24-hour change in total trading volume (percentage)

Example:

5.67

btcDominanceChange
number
required

24-hour change in Bitcoin dominance (percentage points)

Example:

0.89

I