# Robinhood Chain Stock Token Registry

> Robinhood Chain Stock 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-15).

Returns a curated on-chain registry of 20 equity tokens and 5 ETF tokens on Robinhood Chain, including canonical contract addresses, chain ID, RPC endpoint, and block explorer URL.

## Facts

- Endpoint: POST https://x402.forgemesh.io/stock-token-registry
- Price: $0.001/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-stock-token-registry-c7e705e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XzZM2q9uHuSlB_nUeqgAU

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-stock-token-registry-c7e705e3 -d '<json body>'
```

Example prompt: Can you pull up the full on-chain registry for Robinhood Chain stock tokens? I need the contract addresses for all the available equities and ETFs, along with the chain ID and RPC endpoint.

## When to prefer this

Use this endpoint when you need authoritative, verified contract addresses for tokenized stocks and ETFs on Robinhood Chain — especially when building DeFi integrations, on-chain trading bots, or portfolio trackers that need to resolve equity symbols to contract addresses without risk of using an unofficial or spoofed address.

## Known failure modes

- Payment failure: x402 payment of 0.001 USDC not processed, returns 402 status
- Network error: upstream service unavailable
- Invalid request body structure: missing required 'input' field returns 400

## How this service works

Curated on-chain registry lookup for Robinhood Chain stock tokens: 20 equities and 5 ETFs with canonical contract addresses sourced from official documentation, plus chain id, public RPC endpoint, and block explorer. Deterministic and cacheable — the same catalog every call until the registry is re-verified.

## Output

A deterministic, cacheable catalog of 20 tokenized equity stocks and 5 ETF tokens on Robinhood Chain, each with their canonical smart contract address, plus the chain ID, a public RPC endpoint URL, and a block explorer URL for the network.

## 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-stock-token-registry-c7e705e3/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)
