Skip to main content
GET
/
v3
/
funds
/
{id}
/
portfolio-performance
Fund portfolio performance
curl --request GET \
  --url https://api.cryptorank.io/v3/funds/{id}/portfolio-performance \
  --header 'X-Api-Key: <api-key>'
{
  "portfolioMarketCap": "12500000000",
  "portfolioVolume24h": "450000000",
  "change24h": 1.42,
  "topGainers": [
    {
      "currencyId": 28,
      "currencySymbol": "ETH",
      "change24h": 12.34
    }
  ],
  "topLosers": [
    {
      "currencyId": 28,
      "currencySymbol": "ETH",
      "change24h": 12.34
    }
  ]
}

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

Response

200 - application/json
portfolioMarketCap
string
required

Sum of current market caps (USD) across all portfolio coins with a known price and supply. "0" when no portfolio coin has a computable market cap.

Example:

"12500000000"

portfolioVolume24h
string
required

Sum of 24h trading volume (USD) across all portfolio coins with a known price. "0" when no portfolio coin has a computable volume.

Example:

"450000000"

change24h
object
required

24h USD price change in percent, weighted by each coin's current market cap (priceUSD × availableSupply). Larger holdings influence the average more. Null when no portfolio coin has both a 24h data point and a computable market cap.

Example:

1.42

topGainers
object[]
required

Top 3 portfolio coins by 24h price change (descending).

topLosers
object[]
required

Top 3 portfolio coins by 24h price change (ascending).