Skip to main content
GET
/
v3
/
funds
/
{id}
/
recent-rounds
Fund recent funding rounds
curl --request GET \
  --url https://api.cryptorank.io/v3/funds/{id}/recent-rounds \
  --header 'X-Api-Key: <api-key>'
[
  {
    "roundId": 1234,
    "currencyId": 28,
    "currencyName": "Ethereum",
    "currencySymbol": "ETH",
    "roundType": "Series A",
    "date": "2024-08-15T00:00:00.000Z",
    "raised": "5000000",
    "isLead": true
  }
]

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

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:20
Required range: 1 <= x <= 100

Response

200 - application/json
roundId
number
required

Funding round identifier.

Example:

1234

currencyId
number
required

Coin identifier in cryptorank.

Example:

28

currencyName
string
required
Example:

"Ethereum"

currencySymbol
string | null
required
Example:

"ETH"

roundType
string
required

Crowdsale/round type label (e.g. SEED, Series A, IDO, Undisclosed).

Example:

"Series A"

date
string | null
required

Date of the funding round (ISO 8601 UTC). Null when the date is unknown.

Example:

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

raised
string | null
required

Total round size in USD — the full round, not the fund individual contribution. Null when the raised amount is undisclosed.

Example:

"5000000"

isLead
boolean
required

True when the fund was a lead investor in this round.

Example:

true