Get coin market cap history

professional This endpoint requires the professional plan or higher

With the coin market-caps endpoint you can check out a coin's historical market

GET /coin/:uuid/market-caps

https://api.coinranking.com/v2/coin/:uuid/market-caps

Path parameters

ParameterDescription
uuid StringUUID of the coin you want to request the Market cap data for.

Query parameters

Parameter Description
interval (optional) String

The interval determines the time period over which each market cap item is determined.

Default value: day
Allowed values:
hour day week month

Example:
...coin/Qwsogvtv82FCd/marketCaps?interval=hour
limit (optional) Number

Limit. Limit the amount of time periods for which the marketCaps are retrieved. For example, when interval=hour and limit is 10, data will be returned for the last 10 hours. The maximum amount of results you can fetch in one request is 5000 for the Startup and Professional plan, and 100 for the Free plan.

Default value: 50
Size range: 0-5000

Example:
...coin/Qwsogvtv82FCd/marketCaps?limit=10

Code examples

Response

HTTP/1.1 200 OK
{
  "status": "success",
  "data": {
    "history": [
      {
        "timestamp": 1698220800,
        "marketCap": "663355719491"
      },
      {
        "timestamp": 1698217200,
        "marketCap": "662740429329"
      },
      {
        "timestamp": 1698213600,
        "marketCap": "666715637188"
      },
    ]
  }
}

Response fields

PropertyDescription
status String

Status of the request

Allowed values:
success
data Object
data.history Object[]

List of market cap items

data.history.timestamp Number

An Epoch timestamp in seconds

data.history.marketCap String/null

the market cap in US Dollars

Error response

HTTP/1.1 404 Not Found
{
  "status": "fail",
  "type": "COIN_NOT_FOUND",
  "message": "Coin not found"
}

Error responses