# RobinX Token Structure Analysis

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

Returns on-chain cohort rotation and structure verdict for a given token on Robinhood Chain, grading caller accuracy and holder behavior against real price data since genesis.

## Facts

- Endpoint: GET https://api.robinx.io/structure/%7Btoken%7D
- Price: $0.03/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-structure-analysis-89bea824
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8GutvK4m5vq2z6q7FmvYK

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-structure-analysis-89bea824
```

Example prompt: Pull the on-chain structure verdict for token 0xABC123 on Robinhood Chain — I want to see the cohort rotation data, how many holders are exiting vs frozen, and what the signal is.

## When to prefer this

Use this endpoint when you need objective, on-chain-grounded analysis of a specific token's holder structure on Robinhood Chain (chain 4663), especially to cut through social media hype by measuring actual price performance vs caller predictions. Prefer it over generic on-chain tools when the token is specifically on Robinhood Chain and you want cohort rotation signals rather than raw transaction data.

## Known failure modes

- Token address not found on Robinhood Chain (chain 4663) — returns empty or null data
- Invalid or malformed token identifier — likely 400 or error response
- Payment not processed via x402 — request blocked before analysis
- Token too new or with insufficient on-chain history — may return sparse cohort data
- Rate limiting or quota exceeded — payment required per call

## 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 cohort breakdown (number of holders added, exited, and frozen since genesis), a structure verdict with a signal classification (e.g. 'rotation', 'accumulation'), and a top-level signal field summarizing the current on-chain state of the token.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "cohorts": {
    "added": 5,
    "exited": 3,
    "frozen": 12
   },
   "structure_verdict": {
    "signal": "rotation"
   }
  },
  "signal": "rotation"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-token-structure-analysis-89bea824/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)
