Skip to main content
GET
/
v3
/
currencies
/
{id}
/
historical
/
monthly
Currency monthly returns
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/{id}/historical/monthly \
  --header 'X-Api-Key: <api-key>'
[
  {
    "year": 2024,
    "month": 11,
    "closingPrice": "93429.12",
    "changeMoM": 12.45
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
integer
required

Numeric coin id.

Example:

1

Query Parameters

from
string

Range start (ISO 8601 or Unix timestamp in seconds/milliseconds). Defaults to coin listing.

Example:

"2024-01-01"

to
string

Range end (ISO 8601 or Unix timestamp in seconds/milliseconds). Defaults to now.

Response

year
number
required

Calendar year of the month.

Example:

2024

month
number
required

Month number (1..12).

Example:

11

closingPrice
string
required

USD price at month close (last available price in the month).

Example:

"93429.12"

changeMoM
object
required

Percent change of closingPrice vs the previous month. Null when no previous month is available.

Example:

12.45