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

Service metadata

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

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

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

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

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

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

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

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

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

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