GET
/
insights
/
btc-dominance
cURL
curl --request GET \
  --url https://openapiv1.coinstats.app/insights/btc-dominance \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    [
      1746441300,
      61.59
    ],
    [
      1746441400,
      62.1
    ],
    [
      1746441500,
      61.85
    ]
  ]
}
50 credits per request
Returns Bitcoin market dominance data showing BTC’s percentage share of the total cryptocurrency market capitalization over a specified time period. Supports multiple time frames: 24 hours, 1 week, 1 month, 3 months, 6 months, 1 year, or all available data. Data is returned as pairs of [timestamp, percentage] values. Useful for analyzing market trends and Bitcoin’s relative strength in the overall crypto ecosystem.

Authorizations

X-API-KEY
string
header
required

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

Query Parameters

type
enum<string>
required

Time period for the data

Available options:
24h,
1w,
1m,
3m,
6m,
1y,
all

Response

200
application/json

The response is of type object.