Skip to main content
GET
/
v3
/
drophunting
/
{id}
/
funding-rounds
Drophunting activity funding rounds
curl --request GET \
  --url https://api.cryptorank.io/v3/drophunting/{id}/funding-rounds \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1234,
    "type": "SERIES A",
    "date": "2024-08-15T00:00:00.000Z",
    "dateAccuracy": "day",
    "raised": "5000000",
    "valuation": "50000000",
    "sourceUrl": "<string>",
    "investors": [
      {
        "id": 1,
        "slug": "a16z",
        "name": "Andreessen Horowitz",
        "tier": 1,
        "image": "<string>",
        "isLead": true
      }
    ],
    "totalRaised": "125000000"
  }
]

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:50
Required range: 1 <= x <= 200

Response

200 - application/json
id
number
required

Funding round identifier.

Example:

1234

type
string
required

Crowdsale/round type label as stored (e.g. SEED, SERIES A, PRE SEED, Series E, 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"

dateAccuracy
enum<string>
required

day — full date is known; year — only the year portion of date is meaningful.

Available options:
day,
year
Example:

"day"

raised
string | null
required

Total round size in USD. Null when the raised amount is undisclosed.

Example:

"5000000"

valuation
string | null
required

Project valuation at the time of the round in USD. Null when undisclosed.

Example:

"50000000"

sourceUrl
string | null
required

External URL to the source announcement of the round. Null when not available.

investors
object[]
required

Round investors ordered by lead status first, then by fund id ascending.

totalRaised
string | null
required

Total USD raised by the project across all funding rounds and crowdsales (same for every row). Null when no disclosed amounts exist.

Example:

"125000000"