# Robinhood Chain Token Registry

> Robinhood Chain Token Registry is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a registry of 25 verified tokenized stock and ETF contract addresses on Robinhood Chain (chain ID 4663), including their on-chain price-feed addresses and chain metadata.

## Facts

- Endpoint: POST https://x402.forgemesh.io/robinhood-chain-tokens
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-token-registry-3860d37c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xDcHZc-Fxr9g1RH2Tz49E

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-token-registry-3860d37c -d '<json body>'
```

Example prompt: Can you look up the verified contract address and price-feed address for tokenized stocks and ETFs on Robinhood Chain (chain ID 4663), along with the RPC URL and block explorer info?

## When to prefer this

Use this endpoint when you need authoritative, verified contract addresses and price-feed oracle addresses for tokenized equities (stocks/ETFs) specifically on Robinhood Chain (chain ID 4663), and you also need the chain's RPC, explorer, and gas token metadata in one call. Prefer this over generic blockchain explorers when you want pre-verified, cited token registry data without needing to query the chain directly.

## Known failure modes

- Payment not included or invalid — returns 402 Payment Required
- Registry data temporarily unavailable — returns 5xx server error
- Malformed request body — returns 400 Bad Request
- Token or contract not found in the current registry — empty or partial result set

## How this service works

Registry of tokenized stock and ETF contracts on Robinhood Chain (chain id 4663): 25 verified token addresses with their on-chain price-feed addresses, chain metadata (RPC, explorer, gas token), and source citations for every entry. Read-only public blockchain data — informational only, no trading or brokerage functions.

## Output

A structured registry of 25 verified tokenized stock and ETF token contract addresses on Robinhood Chain (chain ID 4663), each paired with its on-chain price-feed oracle address, plus chain metadata including RPC endpoint, block explorer URL, native gas token details, and source citations for every entry.

## 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",
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": {
   "name": "Robinhood Chain",
   "chain_id": 4663
  },
  "count": 25,
  "tokens": [
   {
    "kind": "stock",
    "symbol": "AAPL",
    "token_address": "0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9",
    "price_feed_address": "0x6B22A786bAa607d76728168703a39Ea9C99f2cD0"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-token-registry-3860d37c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
