GET
/
signal
/
v0
/
x-users
/
{xUserID}
Get X User
curl --request GET \
  --url https://api.messari.io/signal/v0/x-users/{xUserID} \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": {
    "engagementMetrics": {
      "latestScore": {
        "IsNull": true,
        "Value": 123
      },
      "scoreChange1d": {
        "IsNull": true,
        "Value": 123
      },
      "scoreChange30d": {
        "IsNull": true,
        "Value": 123
      },
      "scoreChange7d": {
        "IsNull": true,
        "Value": 123
      }
    },
    "id": "<string>",
    "isCorporateAccount": true,
    "isProjectAccount": true,
    "mindshare": {
      "latestScore": {
        "IsNull": true,
        "Value": 123
      },
      "scoreChange1d": {
        "IsNull": true,
        "Value": 123
      },
      "scoreChange30d": {
        "IsNull": true,
        "Value": 123
      },
      "scoreChange7d": {
        "IsNull": true,
        "Value": 123
      }
    },
    "name": "<string>",
    "profileImageUrl": "<string>",
    "socialMetrics": {
      "followersCount": 123,
      "followersCountChange7d": 123,
      "followingCount": 123,
      "tweetCount": 123
    },
    "username": "<string>"
  },
  "error": "<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'.

Response

200
application/json

Default response

The response is of type object.