API · /sectors-api

Stock Sectors API

healthy 4,815 Subscribers

Live S&P 500 sector performance as an API — the sector-rotation picture traders watch, served from Yahoo Finance via the eleven SPDR sector ETFs. It returns each of the eleven GICS sectors — Technology, Financials, Energy, Health Care, Consumer Discretionary, Consumer Staples, Industrials, Materials, Utilities, Real Estate and Communication Services — with its tracking ETF's price, the day's change, the day's high and low, and the 52-week high and low. Pull the whole board ranked by the day's move, with the leading and lagging sectors called out, or look one sector up by name or ETF ticker. The sector-rotation and market-breadth layer for trading, macro-research and dashboard apps. Live, no key, no cache. Distinct from index-level, single-stock and cross-asset-ratio APIs — this is the equity-sector performance breakdown.

api.oanor.com/sectors-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/sectors-api/openapi.json
/api/sectors-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
229 ms
Server probes · 24h
Subscribers
4,815
active
Total calls
18
last 7 days
status Full status page → · 9 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 10,000 calls / month
  • 4 requests / second
  • Hard cap (429 above quota, no overage)
  • 10k calls/month
  • 4 req/sec
  • All endpoints
  • No credit card
Sign in to subscribe

Starter

€10.00 /month

  • 130,000 calls / month
  • 12 requests / second
  • Hard cap (429 above quota, no overage)
  • 130k calls/month
  • 12 req/sec
  • Email support
Sign in to subscribe

Pro

€24.00 /month

  • 660,000 calls / month
  • 35 requests / second
  • Hard cap (429 above quota, no overage)
  • 660k calls/month
  • 35 req/sec
  • Priority support
Sign in to subscribe

Desk

€59.00 /month

  • 3,400,000 calls / month
  • 100 requests / second
  • Hard cap (429 above quota, no overage)
  • 3.4M calls/month
  • 100 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Crypto Categories API

Live market data for crypto sectors and narratives — the themes the market actually trades, not single coins. Served from the public CoinGecko categories feed (no key, nothing cached), it ranks hundreds of sectors: Smart Contract Platforms, Layer 1s and Layer 2s, Memes, Artificial Intelligence, Real-World Assets, DePIN, Gaming, DeFi, Liquid Staking and many more. For each category it gives the total market capitalisation, the 24-hour market-cap change, the 24-hour trading volume and the three largest coins in that sector — so you can see, for example, that the Meme sector is roughly a $30B market led by Dogecoin and Shiba Inu, and which narratives are pumping or bleeding today. The categories endpoint ranks every sector and can be sorted by market cap, 24-hour change or volume; the category endpoint returns one sector by id or name with its market-cap rank and description; the movers endpoint surfaces the top gaining and losing narratives over the last 24 hours, filtered to real sectors so micro-cap dust does not distort the board. This is the sector-rotation and narrative-tracking layer for any crypto research, screener, portfolio or dashboard app — which themes hold the money and which are moving. Live from CoinGecko, nothing stored. Distinct from single-coin price, market-cap and mover APIs — this is the market by sector and narrative. 4 endpoints.

api.oanor.com/cryptocategories-api

Stock Quotes API

Live stock quotes as an API — the current price of any listed equity or ETF, served from Yahoo Finance. For any ticker it returns the current price, the previous close, the absolute and percentage change on the day, the day's high and low, the 52-week high and low, the trading volume and the listing exchange and currency. Look a stock up by ticker or by company name, pull a batch of tickers in a single call for a watchlist, or search for a company to find its symbol. Works for US and international equities and ETFs. The live equity-quote layer for trading, portfolio and dashboard apps. Live, no key, no cache. Distinct from index constituent-directory APIs (which list the members of an index) — this returns the live quote, not the member list.

api.oanor.com/stocks-api

Finance API

Real-time quotes, historical price candles (OHLCV) and symbol search for stocks, ETFs, indices, foreign exchange and cryptocurrencies. Covers global markets — look up any ticker, index (^GSPC), FX pair (EURUSD=X) or coin (BTC-USD).

api.oanor.com/finance-api

IPO Calendar API

The live pipeline of US stock-market initial public offerings, served from Nasdaq's public IPO calendar — no key, nothing cached. This is the deal flow of companies going public, the data IPO investors and traders watch. The priced endpoint returns the IPOs that have just priced and begun trading, each with the ticker, company, exchange, offer price, shares offered, pricing date and total deal size. The upcoming endpoint returns the IPOs expected to price soon, with their price range and expected date — the near-term pipeline. The filed endpoint returns companies that have newly filed to go public, the earliest signal of a coming listing. The calendar endpoint returns the whole month in one call — priced, upcoming and filed — with counts. Any month back through the archive can be requested, and with no month it returns the current one. Everything is live from Nasdaq, nothing stored. This is the IPO-pipeline layer for any trading, investing, screener or finance app. Distinct from stock-quote and earnings APIs — this is the calendar of companies coming to market: priced, upcoming and freshly filed offerings. 4 endpoints, no key on our side.

api.oanor.com/ipo-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Stock Sectors API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Stock Sectors API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Stock Sectors API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Stock Sectors API cost?
Stock Sectors API has a free tier with 100 calls / month. Paid plans start at €10.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Stock Sectors API GDPR-compliant?
All requests to Stock Sectors API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/sectors-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/sectors-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/sectors-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/sectors-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.