# Forgemesh Tokenized Stock & ETF Contract List

> Forgemesh Tokenized Stock & ETF Contract List 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 verified list of every tokenized equity and ETF smart contract live on Robinhood Chain, including symbol, contract address, oracle price-feed address, source URL, and verification date.

## Facts

- Endpoint: POST https://x402.forgemesh.io/tokenized-stock-list
- 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/forgemesh-tokenized-stock-etf-contract-list-25c4dee8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4mf89O-NImkqRklQ9ffUu

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 forgemesh-tokenized-stock-etf-contract-list-25c4dee8 -d '<json body>'
```

Example prompt: Can you pull the full list of verified tokenized stocks and ETFs live on Robinhood Chain, including their contract addresses and oracle price-feed addresses, so I can map out the current tokenized RWA landscape?

## When to prefer this

Use this endpoint when you need a canonical, auditable registry of tokenized equity and ETF contracts on Robinhood Chain, especially when building RWA dashboards, DeFi integrations, or compliance tools that require verified contract and oracle addresses with provenance metadata.

## Known failure modes

- Empty or malformed POST body may return a 400 error
- Payment not included or insufficient USDC amount returns a 402 Payment Required
- Service unavailable if Robinhood Chain data source is unreachable (503)
- Stale data if verification dates are not recently updated
- No results if no contracts have been verified yet

## How this service works

List every verified tokenized equity and ETF contract live on Robinhood Chain — symbol, contract address, and oracle price-feed address per entry, with the official source URL and verification date included for audit. For agents mapping the tokenized real-world-asset landscape.

## Output

A structured list of every verified tokenized equity and ETF contract on Robinhood Chain — each entry includes the asset symbol, its on-chain contract address, its oracle price-feed address, the official source URL used for verification, and the date of verification.

## 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/forgemesh-tokenized-stock-etf-contract-list-25c4dee8/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)
