# 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-13).

Returns real-time or 15-minute delayed stock price and OHLC data for any US equity symbol across NYSE, NASDAQ, and AMEX

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/CRCL
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-stock-quote-api-4a8e9402
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Ff-lHbLzUJMhkSTa7fba

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-4a8e9402
```

Example prompt: What's the current stock price for Circle Internet Group (CRCL) — can you get me the real-time quote including today's high, low, open, previous close, and percent change?

## When to prefer this

Use this endpoint when you need price, OHLC, and percent change for a specific US stock ticker — especially when you want the choice between 15-min delayed ($0.003) and real-time ($0.01) pricing. Prefer this over broader market data services when you need a lightweight, per-symbol lookup rather than bulk or historical data.

## Known failure modes

- Invalid or unsupported ticker symbol — returns error or empty quote object
- Symbol not listed on NYSE/NASDAQ/AMEX — endpoint covers US equities only, not OTC or international
- Market closed or pre/post-market hours may affect real-time data availability
- Omitting the tier parameter defaults to 15-minute delayed data, which may not be suitable for time-sensitive use cases
- Payment failure via x402 protocol — call rejected if USDC payment not processed
- Rate limiting or network timeout if too many requests are made rapidly

## 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

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

## 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-4a8e9402/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)
