# TickersFeed US Stock Quote API

> TickersFeed US 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 (price, 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/GLD
- 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-us-stock-quote-api-e29b241c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dqOXAeJU2ESNZM9wYlSvi

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-us-stock-quote-api-e29b241c
```

Example prompt: What's the current price of GLD — give me the real-time quote with today's open, high, low, previous close, and percent change.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call US equity price quote without committing to a subscription. Ideal for agents that need spot prices, OHLC snapshots, or percent-change data for NYSE, NASDAQ, or AMEX symbols. Choose the delayed tier ($0.003) for cost-sensitive tasks and the realtime tier ($0.01) when live pricing is required for trading decisions or time-sensitive alerts.

## Known failure modes

- Unknown or invalid ticker symbol returns an error or empty response
- Symbol outside NYSE/NASDAQ/AMEX coverage (e.g. OTC or foreign exchange) may not be found
- Missing payment or insufficient USDC balance results in 402 Payment Required
- Requesting realtime tier without ?tier=realtime returns 15-min delayed data by default
- Network timeout during market hours may return stale or no data

## 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, data tier (delayed or realtime), and a quote object with fields: c (current price), o (open), h (high), l (low), 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-us-stock-quote-api-e29b241c/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)
