Real-time or 15-min delayed stock quote and share price for any US equity ticker — current
Real-time or 15-min delayed stock quote and share price for any US equity ticker — current price, open/high/low/close (OHLC), previous close, and percent change as JSON. Covers NYSE, NASDAQ, AMEX (8,400+ stocks and ETFs). No API key required. Use for: stock price lookup, equity quote, share price check, portfolio valuation, trading signals. $0.003 USDC delayed / $0.01 real-time (add ?tier=realtime).
3000 (raw units)
price
47
calls / 30d
8
unique payers
2026-09-18
updated
Provider
api.tickersfeed.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xE82EBef57Fa5aF958B8ECB6843D4327d314F59E3",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "stock-data",
"info": {
"input": {
"method": "GET",
"pathParams": {
"symbol": "AAPL"
},
"queryParams": {
"symbol": "AAPL",
"tier": "delayed"
},
"type": "http"
},
"output": {
"example": {
"quote": {
"c": 150,
"dp": 0.33,
"h": 152,
"l": 149,
"o": 151,
"pc": 149.5
},
"symbol": "AAPL",
"tier": "delayed"
},
"type": "json"
}
},
"routeTemplate": "/stock/:symbol",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"symbol": {
"type": "string"
}
},
"type": "object"
},
"queryParams": {
"properties": {
"symbol": {
"description": "Stock ticker symbol (e.g. AAPL, TSLA, NVDA)",
"type": "string"
},
"tier": {
"description": "15-min delayed (default) or realtime",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.tickersfeed.net/stock/:symbol" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.tickersfeed.net/stock/:symbol");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.tickersfeed.net/stock/:symbol")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4134.json, and this resource appears in /discovery/resources and /discovery/search.