Skip to main content
GET
/
v3
/
funding-rounds
/
most-active-investors
Most active investors
curl --request GET \
  --url https://api.cryptorank.io/v3/funding-rounds/most-active-investors \
  --header 'X-Api-Key: <api-key>'
[
  {
    "fundId": 42,
    "fundName": "a16z crypto",
    "fundLogo": "https://media.cryptorank.io/funds/150x150.a16z-crypto.png",
    "totalInvestments": 124,
    "leadInvestments": 37,
    "totalDeployed": "5800000000"
  }
]

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

from
string

Lower bound on the round date (inclusive). Accepts ISO 8601 string or Unix timestamp (sec/ms). Omit for no lower bound.

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. Omit for no upper bound.

Example:

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

limit
number
default:30

Maximum number of funds to return. Range 1100.

Example:

30

Response

200 - application/json
fundId
number
required

Fund identifier.

Example:

42

fundName
string
required

Fund name.

Example:

"a16z crypto"

fundLogo
string | null
required

Fund logo URL. null when the fund has no logo configured.

Example:

"https://media.cryptorank.io/funds/150x150.a16z-crypto.png"

totalInvestments
number
required

Number of funding rounds the fund participated in within the requested date window (any role — lead or follow-on).

Example:

124

leadInvestments
number
required

Number of funding rounds the fund led within the requested date window (subset of totalInvestments).

Example:

37

totalDeployed
string
required

Sum of raised (USD) across all funding rounds the fund participated in within the requested date window. Aggregates the full round size — the underlying data does not record per-investor check sizes. Rounds with an undisclosed raised amount contribute 0.

Example:

"5800000000"