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

Comma-separated list of project 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 projects that match at least one of the specified tags.

foundedBefore
string<date-time>

Filter by projects founded before the specified date.

foundedAfter
string<date-time>

Filter by projects founded after the specified date.

Response

200
application/json

Default response

The response is of type object.