Skip to main content
GET
/
v3
/
funds
/
{id}
/
top-portfolio
Fund top portfolio
curl --request GET \
  --url https://api.cryptorank.io/v3/funds/{id}/top-portfolio \
  --header 'X-Api-Key: <api-key>'
[
  {
    "currencyId": 28,
    "currencyName": "Ethereum",
    "currencySymbol": "ETH",
    "currencyImage": "<string>",
    "isLead": true,
    "totalInvested": "5000000",
    "currentMarketCap": "450000000000",
    "retailRoi": 12.34,
    "latestRoundDate": "2024-08-15T00:00:00.000Z"
  }
]

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
number
required

Query Parameters

limit
number
default:10
Required range: 1 <= x <= 50
sortBy
enum<string>
default:marketCap
Available options:
latestRoundDate,
marketCap,
retailRoi

Response

200 - application/json
currencyId
number
required

Coin identifier in cryptorank.

Example:

28

currencyName
string
required
Example:

"Ethereum"

currencySymbol
string | null
required
Example:

"ETH"

currencyImage
string | null
required

Absolute URL to the 150×150 coin logo. Null when unavailable.

isLead
boolean
required

True when the fund was a lead investor in any of this coin funding rounds.

Example:

true

totalInvested
string | null
required

Total size (USD) of all funding rounds where the fund participated for this coin. Represents the full round size, not the fund's individual contribution. Null when no round raise amount is known.

Example:

"5000000"

currentMarketCap
string | null
required

Current coin market cap in USD. Null when price or supply is unavailable.

Example:

"450000000000"

retailRoi
object
required

Current price divided by the latest ICO/IDO/IEO USD price — a multiplier (1.0 = breakeven, 12.34 = 12.34×). Null when no listing price reference is available.

Example:

12.34

latestRoundDate
string | null
required

Date of the latest funding round between this fund and this coin (ISO 8601 UTC). Null when no participated round has a known date.

Example:

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