/v1/sector
Companies in a GICS sector
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/sp500-api/v1/sector" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sp500-api/v1/sector", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sp500-api/v1/sector");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/sp500-api/v1/sector",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 72,
"sector": "information technology",
"companies": [
{
"cik": "0000320193",
"name": "Apple Inc.",
"sector": "Information Technology",
"symbol": "AAPL",
"founded": "1977",
"date_added": "1982-11-30",
"headquarters": "Cupertino, California",
"sub_industry": "Technology Hardware, Storage & Peripherals"
},
{
"cik": "0001467373",
"name": "Accenture",
"sector": "Information Technology",
"symbol": "ACN",
"founded": "1989",
"date_added": "2011-07-06",
"headquarters": "Dublin, Ireland",
"sub_industry": "IT Consulting & Other Services"
},
{
"cik": "0000796343",
"name": "Adobe Inc.",
"sector": "Information Technology",
"symbol": "ADBE",
"founded": "1982",
"date_added": "1997-05-05",
"headquarters": "San Jose, California",
"sub_industry": "Application Software"
},
{
"cik": "0000006281",
"name": "Analog Devices",
"sector": "Information Technology",
"symbol": "ADI",
"founded": "1965",
"date_added": "1999-10-12",
"headquarters": "Wilmington, Massachusetts",
"sub_industry": "Semiconductors"
},
{
"cik": "0000769397",
"name": "Autodesk",
"sector": "Information Technology",
"symbol": "ADSK",
"founded": "1982",
"date_added": "1989-12-01",
"headquarters": "San Francisco, California",
"sub_industry": "Application Software"
},
{
"cik": "0001086222",
"name": "Akamai Technologies",
"sector": "Information Technology",
"symbol": "AKAM",
"founded": "1998",
"date_added": "2007-07-12",
"headquarters": "Cambridge, Massachusetts",
"sub_industry": "Internet Services & Infrastructure"
},
{
"cik": "0000006951",
"name": "Applied Materials",
"sector": "Information Technology",
"symbol": "AMAT",
"founded": "1967",
"date_added": "1995-03-16",
"headquarters": "Santa Clara, California",
"sub_industry": "Semiconductor Materials & Equipment"
},
{
"cik": "0000002488",
"name": "Advanced Micro Devices",
"sector": "Information Technology",
…