# Messari X Users Social Signal Rankings

> Messari X Users Social Signal Rankings is a paid API for AI agents from api.messari.io, paid per call via x402, $0.55/call, status unknown (last checked 2026-09-15).

Returns a ranked, paginated list of crypto-focused X (Twitter) users with mindshare scores, sentiment, follower counts, and engagement signals.

## Facts

- Endpoint: GET https://api.messari.io/signal/v1/x-users
- Price: $0.55/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/messari-x-users-social-signal-rankings-f0119b79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W37H5CP98BSNkSO65C-O_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability messari-x-users-social-signal-rankings-f0119b79
```

Example prompt: Show me the top 20 crypto influencers on X right now from Messari's signal rankings — include their mindshare scores, sentiment, and follower counts. Search for accounts related to 'DeFi'.

## When to prefer this

Use this endpoint when you need a broad ranked view of influential crypto X users with mindshare and sentiment context, rather than deep-diving into a single user's profile. Prefer this over the single-user profile endpoint when you want to discover or compare multiple accounts, or when searching for influencers by keyword. Best suited for building leaderboards, identifying trending voices, or filtering the crypto influencer landscape by name.

## Known failure modes

- Invalid page or limit values (below minimum of 1) return a 400 Bad Request
- Empty search string returns no results if no handles or names match
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Rate limiting or quota exhaustion returns 429 Too Many Requests
- Service unavailable during maintenance returns 503

## How this service works

Get ranked crypto X users with mindshare, sentiment, and engagement context.

## Output

A paginated array of X user objects, each containing a unique user ID, handle, display name, 24-hour mindshare percentage, follower count, and a sentiment score between -1 and 1, representing their current influence and tone in crypto social discourse.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer",
   "minimum": 1
  },
  "limit": {
   "type": "integer",
   "minimum": 1
  },
  "search": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "id": "x-user-123",
    "handle": "messari",
    "displayName": "Messari",
    "mindshare24h": 2.4,
    "followerCount": 500000,
    "sentimentScore": 0.58
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-x-users-social-signal-rankings-f0119b79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.messari.io](https://www.zero.xyz/host/api.messari.io/llms.txt)
