GET
/
funding
/
v1
/
rounds
/
investors
GetRoundsInvestors
curl --request GET \
  --url https://api.messari.io/funding/v1/rounds/investors \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "fundingRoundId": "<string>",
      "organizations": [
        {
          "category": "<string>",
          "description": "<string>",
          "foundedDate": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "isLead": true,
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "sector": "<string>",
          "tags": [
            "<string>"
          ]
        }
      ],
      "persons": [
        {
          "id": "<string>",
          "isLead": true,
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "title": "<string>"
        }
      ],
      "projects": [
        {
          "background": "<string>",
          "category": "<string>",
          "foundedDate": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "isLead": true,
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "organizations": [
            "<string>"
          ],
          "overview": "<string>",
          "primaryAsset": {
            "category": "<string>",
            "id": "aSDinaTvuI8gbWludGxpZnk=",
            "name": "<string>",
            "rank": 123,
            "sector": "<string>",
            "serialId": 123,
            "slug": "<string>",
            "symbol": "<string>",
            "tags": [
              "<string>"
            ]
          },
          "secondaryAssets": [
            "<string>"
          ],
          "sector": "<string>",
          "tags": [
            "<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
fundedEntityId
string[]

Comma-separated list of projects or organizations uuids which received funding.

investorId
string[]

Comma-separated list of investor (persons, projects, orgs) IDs who invested in the funding rounds to be retrieved.

type
enum<string>[]

Comma-separated list of funding round types to filter by.

stage
enum<string>[]

Comma-separated list of funding round stages to filter by.

raisedAmountMax
number

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

raisedAmountMin
number

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

isTokenFunded
boolean

Filter by rounds that were funded with tokens.

announcedBefore
string<date-time>

Filter by rounds announced before the specified date.

announcedAfter
string<date-time>

Filter by rounds announced after the specified date.

Response

200
application/json

Default response

The response is of type object.