Skip to main content
GET
/
v3
/
funds
Funds list with metrics
curl --request GET \
  --url https://api.cryptorank.io/v3/funds \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "slug": "a16z",
    "name": "Andreessen Horowitz",
    "images": {
      "icon": "<string>",
      "x60": "<string>",
      "x150": "<string>",
      "native": "<string>"
    },
    "tier": 1,
    "type": "Venture",
    "portfolioAmount": 412,
    "fundingRoundsAmount": 287,
    "leadInvestmentsAmount": 64,
    "retailRoi": 12.34,
    "avgRoundSize": "2500000",
    "location": "US",
    "preferredStage": "SEED"
  }
]

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

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:50
Required range: 1 <= x <= 200
tier
string

Comma-separated tiers (1–5).

Example:

"1,2"

type
enum<string>[]

Comma-separated fund category names.

Available options:
Angel Investor,
Corporation,
DAO,
Exchange,
Guild,
Hedge Fund,
Incubator,
Venture
Example:

"Venture,Hedge Fund"

country
string

Comma-separated ISO 3166-1 alpha-2 country codes (uppercase).

Example:

"US,GB"

sortBy
enum<string>
default:id
Available options:
id,
portfolioAmount,
retailRoi,
roundsCount
sortOrder
enum<string>
default:desc
Available options:
asc,
desc

Response

200 - application/json
id
number
required
Example:

1

slug
string
required
Example:

"a16z"

name
string
required
Example:

"Andreessen Horowitz"

images
object
required

Fund logo URLs in four sizes; each may be null when unavailable.

tier
object
required

Editorial tier 1–5.

Example:

1

type
string | null
required

Fund category.

Example:

"Venture"

portfolioAmount
number
required

Distinct coins in the fund portfolio.

Example:

412

fundingRoundsAmount
number
required

Funding rounds the fund participated in.

Example:

287

leadInvestmentsAmount
number
required

Rounds where the fund was lead.

Example:

64

retailRoi
object
required

Average % ROI since listing across portfolio coins (retail entry price).

Example:

12.34

avgRoundSize
string | null
required

Average round size in USD across all rounds the fund participated in.

Example:

"2500000"

location
string | null
required

ISO 3166-1 alpha-2 country code of the fund.

Example:

"US"

preferredStage
string | null
required

Most frequent crowdsale type across the fund last 20 rounds.

Example:

"SEED"