# TickersFeed Stock Quote API

> TickersFeed Stock Quote API is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns real-time or 15-minute delayed stock quote data (OHLC, high/low, previous close, percent change) for any US-listed equity symbol across NYSE, NASDAQ, and AMEX.

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/BRK.B
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-stock-quote-api-9d895c47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KLBe79pCGbrB_BGU3tbKh

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 tickersfeed-stock-quote-api-9d895c47
```

Example prompt: What's the current stock price for BRK.B — give me the real-time quote with today's open, high, low, and percent change.

## When to prefer this

Use this endpoint when you need a fast, per-call stock price lookup for any US-listed equity with OHLC and percent change data, especially when cost-per-call matters (only $0.003 delayed, $0.01 real-time). Prefer this over broader financial data APIs when you only need a current quote snapshot, not historical series or fundamentals. Ideal for agents that need to check current prices on demand without a subscription.

## Known failure modes

- Unknown or invalid ticker symbol returns an error or empty result
- Symbol outside NYSE/NASDAQ/AMEX coverage (e.g. OTC, international) may not be found
- Requesting realtime tier without correct payment may return delayed data or an error
- Market closed hours may affect real-time data freshness
- Payment failure or insufficient USDC balance blocks the request

## How this service works

Stock quote for any US symbol — real-time or 15-min delayed price, OHLC, high/low, previous close, and percent change. Covers NYSE, NASDAQ, AMEX (8,400+ symbols). $0.003 USDC delayed / $0.01 USDC real-time. Add ?tier=realtime for live prices.

## Output

Returns a JSON object with the ticker symbol, quote tier (delayed or realtime), and a quote object containing current price (c), open (o), high (h), low (l), previous close (pc), and percent change (dp).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "tier": {
       "type": "string",
       "description": "15-min delayed (default) or realtime"
      },
      "symbol": {
       "type": "string",
       "description": "Stock ticker symbol (e.g. AAPL, TSLA, NVDA)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-stock-quote-api-9d895c47/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
