# RobinX Token Mention Intelligence

> RobinX Token Mention Intelligence is a paid API for AI agents from api.robinx.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves on-chain-graded X (Twitter) mention data for a specific Robinhood Chain token, including caller accuracy records, mention velocity, and cluster analysis

## Facts

- Endpoint: GET https://api.robinx.io/mentions/%7Btoken%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-token-mention-intelligence-58f401c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1qwzsqxuYUCjIvOE_hgbf

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 robinx-token-mention-intelligence-58f401c6
```

Example prompt: Pull the RobinX mention data for Robinhood Chain token 0x020bfC650A365f8BB26819deAAbF3E21291018b4 — I want to see which X callers have a strong early-call track record, whether any clusters look coordinated, and what the 24-hour mention velocity looks like.

## When to prefer this

Use RobinX when you need on-chain-verified, accuracy-graded social signal data specifically for tokens on Robinhood Chain (chain 4663) — particularly when evaluating whether X callers promoting a token have a provable track record of early, accurate calls rather than just follower counts. Prefer this over generic sentiment APIs when you need coordinated-account detection, cluster analysis, and caller reputation scores grounded in real price performance rather than engagement metrics.

## Known failure modes

- Invalid or unrecognized token address returns empty or error response
- Token has no mention history on X, resulting in zero mentions and empty arrays
- Token not deployed on Robinhood Chain (chain 4663) returns no data
- Payment failure via x402 blocks the request
- Rate limiting if too many calls are made in rapid succession
- Malformed token address format causes request failure

## How this service works

RobinX grades every X (Twitter) caller and every deployer on Robinhood Chain (chain 4663) against real on-chain price since genesis — who called it early, who chased, whose launches survive. Receipts, not follower counts. Per call over x402, or one line of MCP.

## Output

Returns a JSON object containing the token address, a list of X account mentions with timestamps and per-caller accuracy records (early call rate, coordination flag), a 24-hour hourly mention velocity array, total mention count, number of distinct mention clusters, and the count of measured accounts — all graded against actual on-chain price history since the token's genesis on Robinhood Chain (chain 4663).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4",
   "mentions": [
    {
     "account": "gleobets",
     "tweeted_at": "2026-07-20T12:00:00Z",
     "caller_record": {
      "early_rate": 0.8,
      "coordinated": false
     }
    }
   ],
   "velocity_24h": [
    3,
    1,
    0,
    5
   ],
   "total_mentions": 42,
   "distinct_clusters": 1,
   "measured_accounts": 6
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-token-mention-intelligence-58f401c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.robinx.io](https://www.zero.xyz/host/api.robinx.io/llms.txt)
