Aller au contenu
GET /v1/financials

Latest annual key financials for a company

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/financials-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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