GET
/
funding
/
v1
/
funds
GetFunds
curl --request GET \
  --url https://api.messari.io/funding/v1/funds \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "amountRaisedUSD": 123,
      "announcementDate": "2023-11-07T05:31:56Z",
      "announcements": [
        {
          "url": "<string>"
        }
      ],
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "error": "<string>",
  "metadata": {
    "limit": 123,
    "page": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

limit
integer
page
integer
managerId
string[]

Comma-separated list of fund manager (orgs, persons, projects) uuids.

raisedAmountMin
number

Filter by minimum amount raised in USD. Will return funds which have raised more than the specified amount.

raisedAmountMax
number

Filter by maximum amount raised in USD. Will return funds which have raised less than the specified amount.

announcedBefore
string<date-time>

Filter by funds announced before the specified date.

announcedAfter
string<date-time>

Filter by funds announced after the specified date.

Response

200
application/json

Default response

The response is of type object.