Skip to main content
GET
/
v3
/
currencies
/
{id}
/
historical
/
annual
Currency annual price stats
curl --request GET \
  --url https://api.cryptorank.io/v3/currencies/{id}/historical/annual \
  --header 'X-Api-Key: <api-key>'
[
  {
    "year": 2024,
    "high": "108135.00",
    "low": "38520.10",
    "change": 121.34
  }
]

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

Response

year
number
required

Calendar year.

Example:

2024

high
string
required

Highest USD price observed in the year.

Example:

"108135.00"

low
string
required

Lowest USD price observed in the year.

Example:

"38520.10"

change
object
required

Percent change from the first to the last available USD price in the year. Null when the opening price is zero.

Example:

121.34