# RobinX New Token Feed

> RobinX New Token Feed 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-14).

Returns a feed of newly deployed tokens on Robinhood Chain (chain 4663) with deployer quality scores based on on-chain performance history

## Facts

- Endpoint: GET https://api.robinx.io/feed/new
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-new-token-feed-0b465ce2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sfZ4eScMSaCkHm5QNC8ki

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-new-token-feed-0b465ce2
```

Example prompt: Pull the latest new token launches on Robinhood Chain from RobinX and show me any tokens with a deployer score above 70 — I want to see which ones have credible deployers behind them.

## When to prefer this

Use this endpoint when you need a real-time feed of freshly deployed tokens on Robinhood Chain specifically, scored by deployer historical performance — not follower counts or social hype. Ideal when you want to filter new launches by deployer credibility before acting on them.

## Known failure modes

- No new tokens in feed window returns empty items array
- Payment not confirmed via x402 returns 402 Payment Required
- Network congestion on chain 4663 may delay feed freshness
- Invalid or missing x402 payment header returns authentication error

## How this service works

Live scored launch feed (realtime) — or add ?tier=free for the 10-min-delayed free feed, or ?tier=alpha ($0.02) for caller_signal enrichment

## Output

A JSON array of recently deployed tokens on Robinhood Chain (chain 4663), each including the token contract address, symbol, the timestamp it was first seen, and a deployer_score (0–100) reflecting how well that deployer's past launches have performed against on-chain price data since genesis.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "min_score": {
       "type": "integer"
      },
      "since": {
       "type": "string"
      },
      "limit": {
       "type": "integer"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "data": {
      "items": [
       {
        "token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4",
        "symbol": "CASHCAT",
        "deployer_score": 82,
        "seen_at": "2026-07-20T12:00:00Z",
        "tg_led": true
       }
      ]
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "items": [
   {
    "token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4",
    "symbol": "CASHCAT",
    "tg_led": true,
    "seen_at": "2026-07-20T12:00:00Z",
    "deployer_score": 82
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-new-token-feed-0b465ce2/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)
