Skip to main content
GET
/
v3
/
funding-rounds
/
trends
Fundraising trends (aggregate)
curl --request GET \
  --url https://api.cryptorank.io/v3/funding-rounds/trends \
  --header 'X-Api-Key: <api-key>'
[
  {
    "date": "2024-08-01T00:00:00.000Z",
    "totalRaisedUsd": "125000000",
    "roundsCount": 42,
    "avgRoundSize": "2976190",
    "medianRoundSize": "1500000"
  }
]

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 round date (inclusive). Accepts ISO 8601 string or Unix timestamp (sec/ms).

Example:

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

to
string

Upper bound on the round 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"

category
number

Filter by coin primary category identifier.

Example:

12

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 rounds in the bucket with disclosed raise.

Example:

"125000000"

roundsCount
number
required

Number of rounds in the bucket with disclosed raised amount.

Example:

42

avgRoundSize
string
required

Arithmetic mean of raised (USD) across the bucket.

Example:

"2976190"

medianRoundSize
string
required

Median of raised (USD) across the bucket (continuous percentile).

Example:

"1500000"