# Real-Time Stock Quote

> Real-Time Stock Quote is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a comprehensive real-time stock quote including current price, intraday OHLC, volume metrics, 52-week range, and 50/200-day moving averages from Yahoo Finance.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/quote/:ticker
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/real-time-stock-quote-850296f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OEDv9eDp3m4Nm5myYiHiQ

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 real-time-stock-quote-850296f9
```

Example prompt: What's the current stock quote for NVDA — give me the price, today's intraday high and low, volume, and where it stands relative to its 50 and 200-day moving averages?

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call snapshot of a US stock's current market state including both price action and key technical levels (moving averages, 52-week range). Ideal for market monitoring agents, trading dashboards, or portfolio trackers that need more than just a price — especially when intraday OHLC and moving average context matter. At $0.001/call it is extremely cost-effective for high-frequency polling.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty response
- Delisted or OTC stocks may not be available
- Data may be delayed by a few seconds during high-volatility market conditions
- After-hours or pre-market quotes may differ from real-time session prices
- Network timeout if Yahoo Finance upstream is slow or unavailable

## How this service works

Real-time stock quote in one call: current price, intraday open/high/low, previous close with change and change %, volume metrics, 52-week high/low, and 50/200-day moving averages from real Yahoo Finance data. Perfect for monitoring market price and checking technical levels. $0.001/call.

## Output

A JSON object containing the stock's current price, intraday open/high/low, previous close, absolute and percentage price change, trading volume (current and average), 52-week high and low, and 50-day and 200-day simple moving averages, all sourced from real Yahoo Finance data.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol, e.g. AAPL, TSLA, MSFT"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/real-time-stock-quote-850296f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
