# RobinX Token Feature Row

> RobinX Token Feature Row 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-15).

Returns a comprehensive token-level feature row for a Robinhood Chain token, including launch facts, current price/activity/deployer/caller state, and mention history — raw inputs for custom models, no score or recommendation included.

## Facts

- Endpoint: GET https://api.robinx.io/agent/features
- Price: $0.03/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-feature-row-7477a0b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MqPf7txA00VTS2pkDoQyv

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-feature-row-7477a0b1
```

Example prompt: Pull the full RobinX feature row for token 0x020bfC650A365f8BB26819deAAbF3E21291018b4 on Robinhood Chain — I need the launch identity, current price, swap activity, deployer record, caller state, and mention history to feed into my own scoring model.

## When to prefer this

Choose this endpoint when you need raw, structured feature data for a specific Robinhood Chain (chain 4663) token to feed into your own model or scoring pipeline — not when you want a pre-computed score or recommendation. It is the right choice when you need a single authoritative snapshot combining launch identity, on-chain activity, social mentions, deployer history, and caller quality signals in one call. Prefer it over sibling endpoints when you need the broadest feature coverage for a single token rather than a caller's call log or a deployer-only grade.

## Known failure modes

- Token address not found on Robinhood Chain (chain 4663) — known:false returned with empty coverage
- Token exists but some feature families unavailable (e.g. structure.available:false, caller_state.available:false)
- Price data stale — stale:true flag set with elevated px_age_hours
- Mention data unavailable for very new tokens not yet observed by RobinX
- Payment failure via x402 protocol — endpoint returns 402 if USDC payment not included
- Invalid or malformed token address returns error response

## How this service works

Token-level feature row for one Robinhood Chain token: launch facts, current activity/deployer/price/caller state, and the observed mention record — inputs for your own model (no score, no recommendation)

## Output

A JSON object containing a single token's full feature row: identity fields (name, symbol, deployer address, age in hours, launch block, first observed timestamp), current price state (FDV in WETH, last price in WETH, price age, staleness flag), activity metrics (swap count, trader count, WETH volume, is_real flag), deployer record (score, launch count, dead/real counts), caller state (graded account count, measured callers, best early rate, cluster share of graded), and mention data (total mentions, last 24h count, distinct accounts in sample, first tweet/capture timestamps). No score or recommendation is included — only raw inputs for downstream models.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "Robinhood Chain token address (0x…40 hex) — required"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "data": {
      "chain": "robinhood-4663",
      "known": true,
      "token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4",
      "coverage": {
       "chain": "4663 only"
      },
      "identity": {
       "symbol": "CASHCAT",
       "launch_block": 88836,
       "first_observed_at": "2026-07-12T09:14:00Z"
      },
      "observed": {
       "clock": "captured_at - immutable",
       "mentions": {
        "total": 867,
        "available": true
       }
      },
      "current_state": {
       "price": {
        "stale": false,
        "fdv_weth": 25023.24,
        "last_px_weth": 0.0000250232
       },
       "history": "none - recomputed in place",
       "activity": {
        "swaps": 84864,
        "is_real": true,
        "traders": 10808,
        "measured": true,
        "weth_vol": 69121.878
       },
       "structure": {
        "available": false
       },
       "caller_state": {
        "available": true,
        "measured_caller_count": 62,
        "best_caller_early_rate": 0.8
       },
       "deployer_record": {
        "score": 68,
        "launched": 9,
        "available": true
       }
      },
      "point_in_time": false
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "chain": "robinhood-4663",
  "known": true,
  "token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4",
  "coverage": {
   "chain": "4663 only"
  },
  "identity": {
   "symbol": "CASHCAT",
   "launch_block": 88836,
   "first_observed_at": "2026-07-12T09:14:00Z"
  },
  "observed": {
   "clock": "captured_at - immutable",
   "mentions": {
    "total": 867,
    "available": true
   }
  },
  "current_state": {
   "price": {
    "stale": false,
    "fdv_weth": 25023.24,
    "last_px_weth": 0.0000250232
   },
   "history": "none - recomputed in place",
   "activity": {
    "swaps": 84864,
    "is_real": true,
    "traders": 10808,
    "measured": true,
    "weth_vol": 69121.878
   },
   "structure": {
    "available": false
   },
   "caller_state": {
    "available": true,
    "measured_caller_count": 62,
    "best_caller_early_rate": 0.8
   },
   "deployer_record": {
    "score": 68,
    "launched": 9,
    "available": true
   }
  },
  "point_in_time": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-token-feature-row-7477a0b1/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)
