GET
/
signal
/
v0
/
assets
/
{assetID}
/
time-series
/
mindshare
/
{granularity}
Get Asset mindshare timeseries data
curl --request GET \
  --url https://api.messari.io/signal/v0/assets/{assetID}/time-series/mindshare/{granularity} \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": {
    "points": [
      [
        "<any>"
      ]
    ]
  },
  "error": "<string>",
  "metadata": {
    "granularity": "1m",
    "pointSchemas": [
      {
        "description": "<string>",
        "isTimestamp": true,
        "name": "<string>",
        "slug": "<string>"
      }
    ]
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Path Parameters

granularity
enum<string>
required
Available options:
1m,
5m,
15m,
30m,
1h,
6h,
1d,
1w,
30d,
1q,
1y
assetID
string
required

Asset ID, must be either a slug or UUID

Query Parameters

start
string

Time range start. Encoded as RFC3339 or unix timestamp.

end
string

Time range end. Encoded as RFC3339 or unix timestamp.

Response

Default response

The response is of type object.