# Financial Data x402 — Stock Quote

> Financial Data x402 — Stock Quote is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a real-time stock quote (price, volume, 52-week range, market cap) for a given ticker symbol, paid via micro-payment over the x402 protocol with no API key required.

## Facts

- Endpoint: GET https://x402financialdata.com/quote/%7Bticker%7D
- 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/financial-data-x402-stock-quote-8216dd70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U1pvuxFZGnjZXIC9xerW4

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 financial-data-x402-stock-quote-8216dd70
```

Example prompt: What is the current stock price of AAPL, including today's high and low, volume, and 52-week range?

## When to prefer this

Choose this endpoint when you need frictionless, pay-per-call stock quotes with no API key registration or subscription — ideal for low-frequency lookups, agent pipelines, or scenarios where you want to pay only for what you use in USDC. Prefer it over subscription-based data providers when cost predictability at micro-scale matters or when operating in a crypto-native environment using the x402 payment protocol.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty response
- Payment failure (insufficient USDC balance or network issues) causes a 402 response blocking data delivery
- Market closed or pre/after-hours data may reflect stale or delayed prices
- Rate limiting or network timeouts on Base or Solana payment rails delay the call
- Ticker format mismatch (e.g. using exchange-prefixed symbol instead of bare ticker)

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing the ticker symbol, quote date, last price, open, day high/low, change and percent change from previous close, 50-day and 200-day moving averages, 52-week high and low, latest and average trading volume (10-day and 3-month), market cap, currency, and exchange name.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-26",
  "price": {
   "last": 327.74,
   "open": 325.15,
   "change": 1.36,
   "day_low": 324.89,
   "day_high": 329.42,
   "change_pct": 0.4164,
   "previous_close": 326.38
  },
  "range": {
   "50d_avg": 308.4835,
   "52w_low": 200.7038,
   "200d_avg": 295.2156,
   "52w_high": 334.99
  },
  "ticker": "AAPL",
  "volume": {
   "latest": 42156300,
   "avg_10d": 58932100,
   "avg_3mo": 62145800
  },
  "currency": "USD",
  "exchange": "NMS",
  "market_cap": 3250000000000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-stock-quote-8216dd70/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
