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>"
}
Retrieve a specific 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>"
}
X User ID, must be either a numeric X User ID or a username like '@handle'.
Default response
The response is of type object
.