Ir al contenido
GET /v1/sector

Companies in a GICS sector

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/sp500-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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",

…