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

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.