/v1/history
Full dividend payment history
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
…