Naar de inhoud
GET /v1/concept

Multi-year time series for one metric

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/financials-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/financials-api/v1/concept" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/financials-api/v1/concept", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/financials-api/v1/concept");
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/financials-api/v1/concept",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "unit": "USD",
        "count": 10,
        "label": "Revenue from Contract with Customer, Excluding Assessed Tax",
        "metric": "revenue",
        "series": [
            {
                "value": 260174000000,
                "period_end": "2019-09-28",
                "fiscal_year": 2021
            },
            {
                "value": 91819000000,
                "period_end": "2019-12-28",
                "fiscal_year": 2020
            },
            {
                "value": 58313000000,
                "period_end": "2020-03-28",
                "fiscal_year": 2020
            },
            {
                "value": 59685000000,
                "period_end": "2020-06-27",
                "fiscal_year": 2020
            },
            {
                "value": 274515000000,
                "period_end": "2020-09-26",
                "fiscal_year": 2022
            },
            {
                "value": 365817000000,
                "period_end": "2021-09-25",
                "fiscal_year": 2023
            },
            {
                "value": 394328000000,
                "period_end": "2022-09-24",
                "fiscal_year": 2024
            },
            {
                "value": 383285000000,
                "period_end": "2023-09-30",
                "fiscal_year": 2025
            },
            {
                "value": 391035000000,
                "period_end": "2024-09-28",
                "fiscal_year": 2025
            },
            {
                "value": 416161000000,
                "period_end": "2025-09-27",
                "fiscal_year": 2025
            }
        ],
        "source": "SEC EDGAR (XBRL)",
        "ticker": "AAPL",
        "company": "Apple Inc.",
        "concept": "RevenueFromContractWithCustomerExcludingAssessedTax"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:23.349Z",
        "request_id": "4b7b6ba4-ffbd-4669-9443-d253a818a8f4"
    },
    "status": "ok",
    "message": "Concept retrieved successfully",
    "success": true
}