Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/dividends-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "Yahoo Finance dividend events + search (live)",
        "service": "dividends-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Find a ticker by company name (q=coca).",
            "GET /v1/history": "Full dividend payment history (symbol, years up to 10).",
            "GET /v1/dividends": "TTM dividend, yield, frequency, last payment (symbol=AAPL or name=Apple)."
        },
        "description": "Live stock dividend data from Yahoo Finance: for any ticker, the trailing-twelve-month dividend per share, the dividend yield, the payment frequency (monthly/quarterly/semi-annual/annual), the most recent payment with its date, and the dividend payment history. Look up by ticker or company name, or pull multi-year history. Non-paying stocks are reported with a zero yield. Live, no key. Distinct from dividend-ratio calculators and price-quote APIs — this returns the actual dividends paid.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:12.744Z",
        "request_id": "508a2fa9-4c52-4fc5-bd46-b8ecaf1b4800"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}