Skip to main content
GET
/
v3
/
funding-rounds
Funding rounds feed
curl --request GET \
  --url https://api.cryptorank.io/v3/funding-rounds \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1234,
    "currencyId": 28,
    "currencyName": "Ethereum",
    "currencySymbol": "ETH",
    "currencyImage": "<string>",
    "type": "SERIES A",
    "date": "2024-08-15T00:00:00.000Z",
    "dateAccuracy": "day",
    "raised": "5000000",
    "category": {
      "id": 12,
      "name": "DeFi"
    },
    "moniScore": 1273,
    "allInvestors": [
      {
        "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

Query Parameters

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:50
Required range: 1 <= x <= 200
type
enum<string>[]

Comma-separated round type labels. Values match raw stored labels exactly.

Available options:
ANGEL,
Debt Financing,
Extended Pre-Seed,
Extended Seed,
Extended Series A,
Extended Series B,
Extended Series C,
Extended Series D,
Grant,
IPO,
Incubation,
KOL,
M&A,
OTC Purchase,
PIPE,
Post-IPO,
Post-IPO Debt,
PRESALE,
PRE SEED,
Pre-Series A,
Pre-Series B,
Private Token Sale,
SEED,
SERIES A,
SERIES B,
SERIES C,
SERIES D,
Series E,
Series F,
Series G,
Series H,
STRATEGIC,
Treasury Diversification,
Undisclosed
Example:

"SEED,SERIES A"

from
string

Lower bound on the round date (ISO 8601 UTC, inclusive).

Example:

"2024-01-01T00:00:00.000Z"

to
string

Upper bound on the round date (ISO 8601 UTC, inclusive).

Example:

"2024-12-31T23:59:59.999Z"

minRaised
number

Lower bound on the raised USD amount (inclusive).

Example:

1000000

maxRaised
number

Upper bound on the raised USD amount (inclusive).

Example:

100000000

category
number

Filter by coin primary category identifier.

Example:

12

fund
number

Filter rounds with participation of the fund with this identifier.

Example:

1

sortBy
enum<string>
default:id
Available options:
id,
date,
raised,
valuation
sortOrder
enum<string>
default:asc
Available options:
asc,
desc

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"

currencyImage
string | null
required

Absolute URL to the 150×150 coin logo. 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"

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

allInvestors
object[]
required

All investors of the round, ordered by fund id ascending. Call /funding-rounds/{id} to get the round detail with investors split into leadInvestors and otherInvestors.