# RobinX Token Analytics — Robinhood Chain

> RobinX Token Analytics — Robinhood Chain is a paid API for AI agents from api.robinx.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-12).

Returns on-chain trading metrics and deployer reputation score for a token on Robinhood Chain (chain 4663), graded against real price history since genesis

## Facts

- Endpoint: GET https://api.robinx.io/token/%7Baddress%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-token-analytics-robinhood-chain-a1fcdc7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JfrOuBAAtIEucxiVvm3rt

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-analytics-robinhood-chain-a1fcdc7e
```

Example prompt: Can you pull the RobinX on-chain grade for token address 0xAbC123... on Robinhood Chain — I want to see the deployer score, swap count, trader count, and whether it's flagged as real?

## When to prefer this

Use this endpoint when you need objective, on-chain graded metrics for a specific token on Robinhood Chain (chain 4663), especially to verify whether social media callers or deployers are legitimate. Prefer this over general token screeners when the chain is specifically Robinhood Chain and you want deployer reputation scores alongside volume and trader data.

## Known failure modes

- Token address not found on Robinhood Chain — returns empty or null data
- Invalid or malformed contract address — likely 400 or error response
- Token too new to have indexed data — metrics may be zero or unavailable
- Payment failure via x402 — call not processed if USDC payment is not confirmed
- Rate limiting if many calls are made in rapid succession

## 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

A JSON object containing: total swap count, unique trader count, WETH trading volume, a deployer reputation score (0–100), and an is_real boolean flag — all derived from on-chain data on Robinhood Chain (chain 4663) since the token's genesis.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "swaps": 1200,
   "is_real": true,
   "traders": 210,
   "weth_vol": 44.2,
   "deployer_score": 82
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-token-analytics-robinhood-chain-a1fcdc7e/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)
