Full 11x11 sector correlation matrix with most/least correlated pairs
API · /sectorcorrelation-api
Stock Sector Correlation Matrix API
How the eleven S&P 500 sectors move together, computed live from Yahoo Finance via the SPDR sector ETFs (no key, nothing stored). Sector correlation is the heart of equity diversification and rotation: defensives (utilities, staples, health care) and cyclicals (tech, discretionary, financials, energy) cluster differently, and when correlations rise the whole market is moving as one (risk-on/risk-off), while a spread of correlations means stock-picking and rotation are rewarded. The matrix endpoint returns the full pairwise return-correlation matrix across all eleven sectors with the most- and least-correlated sector pairs. The sector endpoint returns one sector's correlation to every other, ranked, plus its beta to the S&P 500 (how much it amplifies the market). The sectors endpoint lists what is covered. The equity sector correlation / rotation cut — distinct from the cross-asset correlation matrix (asset classes, not sectors), the crypto and currency correlation APIs (other markets) and the sector price/performance feed. It answers which sectors are the same bet and which diversify, within the stock market.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 167 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,985
- attiva
- Chiamate totali
- 80
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 720 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 720 Aufrufe/Monat
- 2 req/sec
- Vollständige 11x11 Sektormatrix + pro Sektor
- Beta zum S&P 500
Starter
€10.86 /mese
- 16,700 chiamate/mese
- 6 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 16,7k Aufrufe/Monat
- 6 req/sec
- Am meisten/wenigsten korreliert + Diversifikatoren
- E-Mail-Support
Pro
€32.66 /mese
- 87,500 chiamate/mese
- 16 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 87,5k Aufrufe/Monat
- 16 req/sec
- Produktions-Rotationsanalysen
- Prioritäts-Support
Business
€74.80 /mese
- 476,000 chiamate/mese
- 40 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 476k Aufrufe/Monat
- 40 req/sec
- High-volume Korrelationsfeed
- Dedizierter Support
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Luxembourg Stock Exchange API
Live equity market data for the Luxembourg Stock Exchange (LuxSE), one of Europe's leading listing venues, with quotes priced in EUR. Pull real-time quotes for specific listings — ArcelorMittal, ENGIE, RTL Group, Aperam, Reinet Investments and the rest of the equity board — with last price, day change percentage and absolute change, open, high, low, traded volume, market capitalisation and sector; run a ranked screener sorted by market cap, day change, volume or price; search the listings by company name; or read a market summary with the number of advancers, decliners and unchanged stocks, total market capitalisation and the day top gainer, top loser and most-active share. Distinct from other regional-exchange APIs on the marketplace — this surfaces the Luxembourg Stock Exchange equity board specifically.
api.oanor.com/luxembourg-stock-api
Cyprus Stock Exchange API
Live equity market data for the Cyprus Stock Exchange (CSE), the regulated securities market in Nicosia, all priced in EUR. Pull real-time quotes for specific listings — Bank of Cyprus, Eurobank, Vassiliko Cement, Demetra Holdings and the rest of the board — with last price, day change percentage and absolute change, open, high, low, traded volume, market capitalisation and sector; run a ranked screener sorted by market cap, day change, volume or price; search the listings by company name; or read a market summary with the number of advancers, decliners and unchanged stocks, total market capitalisation and the day top gainer, top loser and most-active share. Distinct from other regional-exchange APIs on the marketplace — this surfaces the Cyprus Stock Exchange specifically (not the Colombo CSE).
api.oanor.com/cyprus-stock-api
Bolsa de Valores de Colombia (BVC) API
Live Colombian equity data from the Bolsa de Valores de Colombia (BVC): real-time quotes for any listed stock by ticker (price, % change, intraday OHLC, volume, market cap in Colombian peso COP), a ranking screener for gainers, losers, most-active and top market-cap local primary listings, and the MSCI COLCAP benchmark index. Foreign depositary receipts are filtered out so you get only genuine Colombian companies such as Ecopetrol, Grupo Nutresa, ISA, Grupo Energia Bogota and Grupo Cibest.
api.oanor.com/colombia-stock-api
Bolsa Mexicana de Valores (BMV) API
Live Mexican equity data from the Bolsa Mexicana de Valores (BMV): real-time quotes for any listed stock by ticker (price, % change, intraday OHLC, volume, market cap in Mexican peso MXN), a ranking screener for gainers, losers, most-active and top market-cap local primary listings, and the S&P/BMV index family (IPC plus LargeCap, MidCap and SmallCap). Foreign depositary receipts are filtered out so you get only genuine Mexican companies such as Grupo Mexico, America Movil, Walmex, FEMSA and Banorte. Mexican share classes carry a slash suffix (e.g. GMEXICO/B, AMX/B).
api.oanor.com/mexico-stock-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Stock Sector Correlation Matrix API?
Qual è il limite di velocità di Stock Sector Correlation Matrix API?
Quanto costa Stock Sector Correlation Matrix API?
Posso cancellare l'abbonamento in qualsiasi momento?
Stock Sector Correlation Matrix API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/sectorcorrelation-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/sectorcorrelation-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/sectorcorrelation-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/sectorcorrelation-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.