Skip to main content
GET
/
v3
/
funding-rounds
/
{id}
Funding round detail
curl --request GET \
  --url https://api.cryptorank.io/v3/funding-rounds/{id} \
  --header 'X-Api-Key: <api-key>'
{
  "id": 1234,
  "currencyId": 28,
  "currencyName": "Ethereum",
  "currencySymbol": "ETH",
  "currencyImages": {
    "icon": "<string>",
    "x60": "<string>",
    "x150": "<string>",
    "native": "<string>"
  },
  "type": "SERIES A",
  "date": "2024-08-15T00:00:00.000Z",
  "dateAccuracy": "day",
  "raised": "5000000",
  "valuation": "50000000",
  "sourceUrl": "<string>",
  "category": {
    "id": 12,
    "name": "DeFi"
  },
  "moniScore": 1273,
  "leadInvestors": [
    {
      "id": 1,
      "slug": "a16z",
      "name": "Andreessen Horowitz",
      "tier": 1,
      "image": "<string>"
    }
  ],
  "otherInvestors": [
    {
      "id": 1,
      "slug": "a16z",
      "name": "Andreessen Horowitz",
      "tier": 1,
      "image": "<string>"
    }
  ]
}

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
id
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"

currencyImages
object
required

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

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.

category
object
required

Coin primary category. Null when no category is assigned.

moniScore
object
required

Twitter engagement score of the project (higher is better; no fixed upper bound). Null when the project has no linked Twitter account or no score is available.

Example:

1273

leadInvestors
object[]
required

Lead investors of the round (ordered by id ascending).

otherInvestors
object[]
required

Other investors of the round (ordered by id ascending).