GET
/
signal
/
v0
/
x-users
/
{xUserID}
/
time-series
/
mindshare
/
{granularity}
Get X User mindshare timeseries data
curl --request GET \
  --url https://api.messari.io/signal/v0/x-users/{xUserID}/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
xUserID
string
required

X User ID, must be either a numeric X User ID or a username like '@handle'.

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.