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

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 quarter.

Example:

2024

quarter
number
required

Quarter number (1..4).

Example:

4

closingPrice
string
required

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

Example:

"93429.12"

changeQoQ
object
required

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

Example:

47.32