GET
/
signal
/
v0
/
x-users
Get X Users
curl --request GET \
  --url https://api.messari.io/signal/v0/x-users \
  --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>",
  "metadata": {
    "page": 123,
    "pageSize": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

limit
integer

Number of items per page

pageSize
integer

Number of items per page. Kept for backward compatibility

page
integer

Page number

sort
enum<string>
Available options:
mindshare,
engagement,
followers
accountType
enum<string>
Available options:
corporate,
project,
individual

Response

200
application/json

Default response

The response is of type object.