Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/financials-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "Look up a company by its ticker (ticker=AAPL). Figures are the latest annual (10-K) values reported to the SEC in USD. The concept endpoint accepts metric=revenue|gross_profit|operating_income|net_income|assets|liabilities|equity|cash|eps_diluted.",
        "source": "SEC EDGAR XBRL company-facts API (data.sec.gov, live)",
        "service": "financials-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/company": "Resolve a ticker to its SEC company (CIK, legal name).",
            "GET /v1/concept": "Multi-year time series for one metric (ticker=AAPL, metric=revenue).",
            "GET /v1/financials": "Latest annual key financials for a company (ticker=AAPL)."
        },
        "description": "Live fundamental financials for US public companies from the SEC's official XBRL data. financials = the latest annual key figures (revenue, gross profit, operating income, net income, total assets, total liabilities, shareholders' equity, cash, diluted EPS, net margin); concept = the multi-year time series for a single metric; company = resolves a ticker to its SEC company (CIK and legal name). Live, no key, nothing stored. Straight from a company's SEC filings — distinct from the quote, analyst, insider and SEC-filings (EDGAR) APIs.",
        "tickers_indexed": 10416,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:23.514Z",
        "request_id": "e82cf0b6-a959-4bdf-9739-3d54e0aac6f8"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}