# RobinX Token On-Chain Stats

> RobinX Token On-Chain Stats 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-15).

Returns on-chain trading statistics for a token contract address, including swap count, trader count, WETH volume, authenticity signal, and deployer reputation score

## Facts

- Endpoint: GET https://api.robinx.io/token/:address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-token-on-chain-stats-3b2c518a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_84IvCWwfifOa-yx0G7PxU

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-on-chain-stats-3b2c518a
```

Example prompt: Pull the on-chain stats for token contract 0x1234...abcd — I want to see the swap count, trader count, WETH volume, and whether RobinX thinks it's a real token, plus the deployer score.

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of a token's on-chain trading activity and deployer credibility on Robinhood Chain (chain 4663). It is especially useful when evaluating unfamiliar tokens for legitimacy before trading, since the is_real flag and deployer_score provide signals not easily available from generic block explorers. Prefer this over raw blockchain queries when you want pre-computed, scored metrics rather than raw transaction data.

## Known failure modes

- Invalid or malformed contract address returns an error
- Token address not found on supported chain returns empty or null data
- Non-token wallet address (EOA) may return misleading or empty stats
- Rate limiting or payment failure may result in 402 or 429 response
- Address with no trading history may return zero values for all metrics

## How this service works

Token on-chain stats

## Output

Returns a JSON object with on-chain statistics for the queried token: swap count (total number of swaps), is_real (boolean authenticity signal), traders (number of unique traders), weth_vol (WETH trading volume as a float), and deployer_score (0-100 integer reputation score for the token's deployer).

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "address": {
       "type": "string",
       "description": "wallet/token contract address 0x…"
      }
     },
     "required": [
      "address"
     ]
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "data": {
      "swaps": 1200,
      "weth_vol": 44.2,
      "traders": 210,
      "is_real": true,
      "deployer_score": 82
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "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-on-chain-stats-3b2c518a/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)
