Ir al contenido
GET /v1/history

Full dividend payment history

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/dividends-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "name": "The Coca-Cola Company",
        "count": 20,
        "years": 5,
        "symbol": "KO",
        "currency": "USD",
        "payments": [
            {
                "ts": 1773408600,
                "date": "2026-03-13",
                "amount": 0.53
            },
            {
                "ts": 1764599400,
                "date": "2025-12-01",
                "amount": 0.51
            },
            {
                "ts": 1757943000,
                "date": "2025-09-15",
                "amount": 0.51
            },
            {
                "ts": 1749821400,
                "date": "2025-06-13",
                "amount": 0.51
            },
            {
                "ts": 1741959000,
                "date": "2025-03-14",
                "amount": 0.51
            },
            {
                "ts": 1732890600,
                "date": "2024-11-29",
                "amount": 0.485
            },
            {
                "ts": 1726234200,
                "date": "2024-09-13",
                "amount": 0.485
            },
            {
                "ts": 1718371800,
                "date": "2024-06-14",
                "amount": 0.485
            },
            {
                "ts": 1710423000,
                "date": "2024-03-14",
                "amount": 0.485
            },
            {
                "ts": 1701354600,
                "date": "2023-11-30",
                "amount": 0.46
            },
            {
                "ts": 1694698200,
                "date": "2023-09-14",
                "amount": 0.46
            },
            {
                "ts": 1686835800,
                "date": "2023-06-15",
                "amount": 0.46
            },
            {
                "ts": 1678973400,
                "date": "2023-03-16",
                "amount": 0.46
            },
            {
                "ts": 1669818600,
                "date": "2022-11-30",
                "amount": 0.44
            },
            {
                "ts": 1663248600,
                "date": "2022-09-15",
                "amount": 0.44
            },
            {
                "ts": 1655213400,
                "date": "2022-06-14",
                "amount": 0.44
            },
            {
                "ts": 1647264600,
                "date": "2022-03-14",
                "amount": 0.44
            },
            {
                "ts": 1638282600,
                "date": "2021-11-30",
                "amount": 0.42
            },
            {
                "ts": 1631626200,
                "date": "2021-09-14",
                "amount": 0.42
            },
            {
                "ts": 1623677400,
                "date": "2021-06-14",
                "amount": 0.42
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:12.355Z",
        "request_id": "70029ca0-e249-4f9c-82ae-fea1184f1c8c"
    },
    "status": "ok",
    "message": "Hi
…