# Finance API - Multi-Ticker US Stock Snapshot

> Finance API - Multi-Ticker US Stock Snapshot is a paid API for AI agents from finance-api.kdlcfa.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns delayed price quotes for 10 major US tech stocks (AAPL, MSFT, GOOGL, AMZN, NVDA, TSLA, META, NFLX, AMD, INTC) in a single API call via Yahoo Finance

## Facts

- Endpoint: GET https://finance-api.kdlcfa.workers.dev/stock-snapshot
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-api-multi-ticker-us-stock-snapshot-56a221ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LytXalLZy1WhBpZf4-fDp

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 finance-api-multi-ticker-us-stock-snapshot-56a221ef
```

Example prompt: Can you pull up the current prices for all the major tech stocks — Apple, Microsoft, Google, Amazon, Nvidia, Tesla, Meta, Netflix, AMD, and Intel — all at once?

## When to prefer this

Choose this endpoint when you need prices for multiple major US tech stocks in a single low-latency call, rather than making individual per-ticker requests. Ideal for dashboards, portfolio monitors, or any workflow where you need a broad tech-sector snapshot simultaneously. If you only need one specific ticker, the single-ticker endpoint on the same host is more appropriate. If you need real-time (non-delayed) data, seek a premium market data feed instead.

## Known failure modes

- Payment failure if x402 USDC payment is not included or rejected
- Yahoo Finance upstream outage causing stale or missing data
- Rate limiting if called too frequently
- Network timeout from the Cloudflare Workers edge environment
- Empty or malformed response if Yahoo Finance API changes its schema

## How this service works

Multi-ticker US stock snapshot (AAPL, MSFT, GOOGL, AMZN, NVDA, TSLA, META, NFLX, AMD, INTC) in a single call, delayed, via Yahoo Finance

## Output

A single response containing delayed price quotes for all 10 tickers: AAPL, MSFT, GOOGL, AMZN, NVDA, TSLA, META, NFLX, AMD, and INTC. Each entry likely includes the current price and associated quote data sourced from Yahoo Finance, with standard market delay (typically 15 minutes).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "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/finance-api-multi-ticker-us-stock-snapshot-56a221ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance-api.kdlcfa.workers.dev](https://www.zero.xyz/host/finance-api.kdlcfa.workers.dev/llms.txt)
