# Real-Time Market Quote

> Real-Time Market Quote is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a real-time market quote for a given ticker including price, intraday OHLC, volume, 52-week range, and moving averages — covering stocks, forex pairs, and commodity futures via Yahoo Finance data.

## Facts

- Endpoint: GET https://www.x402financialdata.com/quote/:ticker
- Price: $0.005/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-market-quote-8fd8f91e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UykuDKd7YQmeb5BLiogvr

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-market-quote-8fd8f91e
```

Example prompt: What's the current price of AAPL right now, including today's high and low, volume, and its 50 and 200-day moving averages?

## When to prefer this

Use this endpoint when you need a comprehensive single-call snapshot of a market instrument's current price and key metrics — including intraday OHLC, moving averages, and 52-week range — across equities, forex pairs, or commodity futures. Prefer it over dedicated news, options, or fundamentals endpoints when the core need is the current price and trading metrics in one call. At $0.001/call it is cost-effective for frequent polling or agent-driven monitoring.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Network timeouts if Yahoo Finance data source is temporarily unavailable
- Forex or futures tickers may need exact format (e.g. EURUSD=X, GC=F) — wrong format returns no data
- Outside market hours some intraday fields (volume, high/low) may reflect previous session values

## How this service works

Real-time 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. Works for stocks, forex pairs (e.g. EURUSD=X), and commodity futures (e.g. GC=F gold, CL=F oil), not just equities. $0.001/call.

## Output

Returns a JSON object with the ticker's current price, intraday open/high/low, previous close, price change and change percentage, trading volume, 52-week high/low, and 50-day and 200-day moving averages. Data sourced in real time from Yahoo Finance and covers equities, forex pairs, and commodity futures.

## 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-market-quote-8fd8f91e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
