/v1/financials
Latest annual key financials for a company
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/financials-api/v1/financials" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/financials-api/v1/financials", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/financials-api/v1/financials");
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/financials",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"cik": 320193,
"cash": 35934000000,
"source": "SEC EDGAR (XBRL)",
"ticker": "AAPL",
"company": "Apple Inc.",
"revenue": 416161000000,
"currency": "USD",
"net_income": 112010000000,
"eps_diluted": 7.46,
"gross_profit": 195201000000,
"total_assets": 359241000000,
"net_margin_pct": 26.92,
"operating_income": 133050000000,
"fiscal_period_end": "2025-09-27",
"total_liabilities": 285508000000,
"shareholders_equity": 73733000000
},
"meta": {
"timestamp": "2026-06-12T01:42:23.258Z",
"request_id": "f05d7d40-e734-406f-a3c5-3dfa03e7816f"
},
"status": "ok",
"message": "Financials retrieved successfully",
"success": true
}