Skip to main content
GET
/
v3
/
public-sales
/
trends
Public sales trends (aggregate)
curl --request GET \
  --url https://api.cryptorank.io/v3/public-sales/trends \
  --header 'X-Api-Key: <api-key>'
[
  {
    "date": "2024-08-01T00:00:00.000Z",
    "totalRaisedUsd": "125000000",
    "salesCount": 42,
    "ico": 8,
    "ido": 28,
    "ieo": 6
  }
]

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

Query Parameters

interval
enum<string>
required

Bucket size for aggregation: 1d — daily, 1w — weekly (ISO week), 1m — monthly.

Available options:
1d,
1w,
1m
Example:

"1m"

from
string
required

Lower bound on the sale start date (inclusive). Accepts ISO 8601 string or Unix timestamp (sec/ms).

Example:

"2024-01-01T00:00:00.000Z"

to
string

Upper bound on the sale start date (inclusive). Accepts ISO 8601 string or Unix timestamp (sec/ms). Bare YYYY-MM-DD is coerced to end-of-day UTC. Defaults to now.

Example:

"2024-12-31T23:59:59.999Z"

Response

200 - application/json
date
string
required

Bucket start (ISO 8601 UTC). For 1w the bucket starts on Monday; for 1m on the 1st.

Example:

"2024-08-01T00:00:00.000Z"

totalRaisedUsd
string
required

Sum of raised (USD) across all sales in the bucket with disclosed raise.

Example:

"125000000"

salesCount
number
required

Number of sales in the bucket with disclosed raised amount.

Example:

42

ico
number
required

Number of ICO sales in the bucket with disclosed raised amount.

Example:

8

ido
number
required

Number of IDO sales in the bucket with disclosed raised amount.

Example:

28

ieo
number
required

Number of IEO sales in the bucket with disclosed raised amount.

Example:

6