Zum Inhalt springen
GET /v1/dividends

TTM dividend, yield, frequency, last payment

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/dividends-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "name": "Apple Inc.",
        "price": 301.54,
        "recent": [
            {
                "ts": 1778506200,
                "date": "2026-05-11",
                "amount": 0.27
            },
            {
                "ts": 1770647400,
                "date": "2026-02-09",
                "amount": 0.26
            },
            {
                "ts": 1762785000,
                "date": "2025-11-10",
                "amount": 0.26
            },
            {
                "ts": 1754919000,
                "date": "2025-08-11",
                "amount": 0.26
            },
            {
                "ts": 1747056600,
                "date": "2025-05-12",
                "amount": 0.26
            },
            {
                "ts": 1739197800,
                "date": "2025-02-10",
                "amount": 0.25
            },
            {
                "ts": 1731076200,
                "date": "2024-11-08",
                "amount": 0.25
            },
            {
                "ts": 1723469400,
                "date": "2024-08-12",
                "amount": 0.25
            }
        ],
        "symbol": "AAPL",
        "currency": "USD",
        "frequency": "quarterly",
        "last_payment": {
            "date": "2026-05-11",
            "amount": 0.27
        },
        "payments_ttm": 4,
        "ttm_dividend": 1.05,
        "pays_dividend": true,
        "dividend_yield_pct": 0.35
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:12.031Z",
        "request_id": "7e8af875-9f80-416e-a399-c6421e685fdd"
    },
    "status": "ok",
    "message": "Dividends retrieved successfully",
    "success": true
}