# RWA Token Contract Lookup – Robinhood Chain

> RWA Token Contract Lookup – Robinhood Chain 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 ERC-20 contract addresses, asset kind, and price-feed references for tokenized real-world assets (equities like AAPL, NVDA, TSLA) on Robinhood Chain (Arbitrum-Orbit L2)

## Facts

- Endpoint: POST https://x402.forgemesh.io/rwa-token-contracts
- 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/rwa-token-contract-lookup-robinhood-chain-dfba4c3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gh-cfFZ3YvR9XNmPWr68n

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 rwa-token-contract-lookup-robinhood-chain-dfba4c3f -d '<json body>'
```

Example prompt: Before I interact with any on-chain contract, can you look up the ERC-20 contract address, asset kind, and price-feed reference for NVDA on Robinhood Chain so I can verify I'm touching the right contract?

## When to prefer this

Use this endpoint when an agent needs to resolve a tokenized equity symbol (AAPL, NVDA, TSLA, etc.) to its canonical ERC-20 contract address on Robinhood Chain before executing any on-chain action — especially as a verification step prior to token transfers, swaps, or DeFi interactions. Prefer this over generic blockchain explorers when you specifically need Robinhood Chain / Arbitrum-Orbit L2 RWA token metadata with a price-feed reference included.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Network or RPC connectivity issues with Robinhood Chain may cause timeouts
- Payment of $0.001 USDC not fulfilled returns 402 error
- Malformed request body causes 400 validation error
- Contract data may lag behind newly listed assets

## How this service works

Contract addresses for tokenized real-world assets on Robinhood Chain, an Arbitrum-Orbit L2 where equities like AAPL, NVDA, and TSLA trade as ERC-20 tokens. Returns address, asset kind, and price-feed reference per symbol so an agent can verify what it is interacting with before touching any contract.

## Output

Returns the ERC-20 contract address on Robinhood Chain (Arbitrum-Orbit L2), the asset kind (e.g. equity), and a price-feed reference for the requested equity symbol, enabling an agent to confirm contract identity before any on-chain interaction.

## 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/rwa-token-contract-lookup-robinhood-chain-dfba4c3f/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)
