/v1/financials
Latest annual key financials for a company
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}