# Robinhood Chain New Listings Feed

> Robinhood Chain New Listings Feed is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches the latest newly listed tokens on Robinhood Chain, optionally filtered to tokenized-stock-style equity symbols only

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/new-listings
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-new-listings-feed-4c7bc7bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hS48kybUPeW5TBoSxaQKJ

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 robinhood-chain-new-listings-feed-4c7bc7bb -d '<json body>'
```

Example prompt: What are the latest new token listings on Robinhood Chain? Show me up to 25, and only include the tokenized-stock-style equity symbols.

## When to prefer this

Use this endpoint when you specifically need to discover tokens that have newly listed on Robinhood Chain — particularly tokenized equities — and want to act on first-mover opportunities like price dislocation vs real equity markets. Prefer this over generic token scanners when your focus is Robinhood Chain's tokenized-stock ecosystem specifically.

## Known failure modes

- Payment not included or insufficient (402 payment required)
- limit exceeds max of 40 (validation error)
- No new listings available (empty result set)
- Robinhood Chain data feed temporarily unavailable (upstream timeout or 503)
- Invalid parameter types (e.g. non-boolean for equityOnly)

## How this service works

Freshest tokens on Robinhood Chain: the newest tokenized stocks/RWAs to appear on-chain, deduped to first-seen per symbol, with age, price, liquidity, and a tokenized-equity flag. Send { limit?, equityOnly? }. First-mover asset alerts for agents that want in on new listings before the crowd.

## Output

A list of newly listed tokens on Robinhood Chain (up to the requested limit, default 15, max 40), each including token name, symbol, and listing metadata. When equityOnly is true, only tokenized-stock-style symbols are returned, enabling targeted equity dislocation scanning.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-new-listings-feed-4c7bc7bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
