GET
/
funding
/
v1
/
organizations
GetOrganizations
curl --request GET \
  --url https://api.messari.io/funding/v1/organizations \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "category": "<string>",
      "description": "<string>",
      "foundedDate": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "links": [
        {
          "name": "<string>",
          "type": "<string>",
          "url": "<string>"
        }
      ],
      "location": "<string>",
      "name": "<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
id
string[]

Comma-separated list of organization uuids to filter by.

category
string[]

Comma-separated list of categories to filter by.

sector
string[]

Comma-separated list of sectors to filter by.

tags
string[]

Comma-separated list of tags to filter by. Will return organizations that match at least one of the specified tags.

foundedBefore
string<date-time>

Filter by organizations founded before the specified date.

foundedAfter
string<date-time>

Filter by organizations founded after the specified date.

Response

Default response

The response is of type object.