GET
/
intel
/
v1
/
assets
List all assets
curl --request GET \
  --url https://api.messari.io/intel/v1/assets \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "symbol": "<string>"
    }
  ],
  "error": "<string>",
  "metadata": {
    "limit": 123,
    "page": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

symbol
string[]

Optional filter to only return assets with specific symbols, comma separated. It might return multiple results with a common symbol.

name
string[]

Optional filter to only return assets with specific names, comma separated. It might return multiple results with a common or similar name.

limit
integer
page
integer

Response

200
application/json

Default response

The response is of type object.