# ForgeMesh On-Chain Stock Quote

> ForgeMesh On-Chain Stock Quote is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Looks up the current on-chain price, supply, and contract details of a tokenized stock share from Robinhood Chain's price feed.

## Facts

- Endpoint: POST https://x402.forgemesh.io/onchain-stock-quote
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-on-chain-stock-quote-408647f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tSq-EqzDaZ71IwFlJKaTJ

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-on-chain-stock-quote-408647f3 -d '<json body>'
```

Example prompt: What is AAPL currently priced at on-chain on Robinhood Chain? I want to see the token supply and contract details too so I can reconcile it against the off-chain market price.

## When to prefer this

Use this endpoint when you need to verify what price a smart contract actually sees for a tokenized stock on Robinhood Chain, especially for reconciling discrepancies between off-chain market data and on-chain DeFi state. Prefer this over traditional market data APIs when the use case involves blockchain-native applications, DeFi protocols, or auditing tokenized equity positions.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Price feed temporarily unavailable due to on-chain data lag
- Network or RPC connectivity issues to Robinhood Chain
- Malformed symbol input causes validation error
- Symbol supported off-chain but not yet tokenized on Robinhood Chain

## How this service works

Look up what a tokenized share is currently priced at on-chain, straight from the asset's price feed on Robinhood Chain, together with supply and contract details of the token itself. Built for agents reconciling off-chain market data against what smart contracts actually see.

## Output

Returns the current on-chain price of the requested tokenized stock symbol as seen by the smart contract price feed on Robinhood Chain, along with token supply and contract metadata for reconciliation purposes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Ticker symbol, e.g. AAPL, NVDA, SPY (case-insensitive)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "stock",
  "found": true,
  "price": {
   "usd": "328.93373112",
   "stale": false,
   "updated_at": "2026-07-16T00:37:55.000Z"
  },
  "token": {
   "address": "0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9",
   "decimals": 18
  },
  "symbol": "AAPL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-on-chain-stock-quote-408647f3/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)
