# ForgeMesh Tokenized Stock Price Oracle

> ForgeMesh Tokenized Stock Price Oracle 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).

Returns the current USD oracle price for a tokenized equity (e.g. AAPL, NVDA, TSLA, SPY) on Robinhood Chain, with raw fixed-point answer, feed decimals, update timestamp, and a stale/fresh verdict.

## Facts

- Endpoint: POST https://x402.forgemesh.io/tokenized-stock-price
- 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-tokenized-stock-price-oracle-da3bc580
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a9-sF7LkXx0NmOlxkxIDZ

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-price-oracle-da3bc580 -d '<json body>'
```

Example prompt: What's the current oracle price for AAPL on Robinhood Chain — and is the feed fresh enough to use right now?

## When to prefer this

Use this endpoint when you need an on-chain oracle price for a tokenized equity on Robinhood Chain, especially when freshness validation is important before executing a trade or valuation. Prefer this over traditional stock data APIs when operating in a DeFi or blockchain context requiring fixed-point raw price data with explicit staleness metadata.

## Known failure modes

- Unknown ticker symbol returns list of supported symbols rather than a price
- Stale verdict returned if oracle has not updated recently, indicating price may be unreliable
- Network or payment failure results in no data returned
- Case sensitivity issues with ticker input (endpoint is case-insensitive)

## How this service works

Current USD oracle price for a tokenized equity on Robinhood Chain — AAPL, NVDA, TSLA, SPY and 21 more — with the raw fixed-point answer, feed decimals, update timestamp, and an explicit stale/fresh verdict so an agent can decide whether the quote is usable. Unknown tickers return the full list of supported symbols.

## Output

Returns the current USD oracle price for the requested ticker as a raw fixed-point integer with feed decimals (to reconstruct the human-readable price), the timestamp of the last oracle update, and an explicit stale/fresh verdict. If the ticker is unknown, returns the full list of supported symbols instead.

## 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-tokenized-stock-price-oracle-da3bc580/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)
