Real-time or 15-min delayed stock quote and share price for any US equity ticker
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).
Answeringour last check, 2026-09-24
1 of 1checks answered this week
625 msmedian answer time
$0.003listed price per call
$0.003price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.tickersfeed.net/stock/:symbol
| Category | Market data |
|---|---|
| Provider host | api.tickersfeed.net |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 69 from 8 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.003 | 625 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"symbol": "AAPL"
},
"queryParams": {
"symbol": "AAPL",
"tier": "delayed"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}