Skip to main content
POST
/
api
/
messari
/
fundraising
/
rounds
/
search
/messari/fundraising/rounds/search
curl --request POST \
  --url https://api.anysite.io/api/messari/fundraising/rounds/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "stage": "<string>",
  "type": "<string>",
  "date_from": "<string>",
  "date_to": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "MessariFundingRound",
    "date": "<string>",
    "amount_raised_usd": 123,
    "stage": "<string>",
    "type": "<string>",
    "funded_entity": {
      "@type": "MessariFundedEntity",
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "type": "<string>"
    },
    "investors": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of funding rounds to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
stage
string | null

Filter by funding stage (e.g. 'Seed', 'Early Stage Venture')

type
string | null

Filter by round type (e.g. 'Seed', 'Series A', 'Series B')

date_from
string | null

Only rounds on or after this date (YYYY-MM-DD)

date_to
string | null

Only rounds on or before this date (YYYY-MM-DD)

Response

Successful Response

id
string
required
@type
string
default:MessariFundingRound
date
string | null
amount_raised_usd
number | null
stage
string | null
type
string | null
funded_entity
object
investors
string[]