curl --request GET \
--url https://astreus.ai/api/v1/companies/{id}/dividends \
--header 'X-API-KEY: <api-key>'import requests
url = "https://astreus.ai/api/v1/companies/{id}/dividends"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://astreus.ai/api/v1/companies/{id}/dividends', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://astreus.ai/api/v1/companies/{id}/dividends",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://astreus.ai/api/v1/companies/{id}/dividends"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://astreus.ai/api/v1/companies/{id}/dividends")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://astreus.ai/api/v1/companies/{id}/dividends")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"cik": "0000726728",
"symbol": "O",
"currency": "USD",
"events": [
{
"exDate": "1994-10-26",
"type": "Cash",
"amount": 0.149999,
"amountSplitAdj": 0.072674,
"ttm": 0.072674,
"changePct": null,
"yieldAtExDatePct": 0.875907,
"yieldPeriodAvgPct": 0.881268
},
{
"exDate": "1994-11-25",
"type": "Cash",
"amount": 0.149999,
"amountSplitAdj": 0.072674,
"ttm": 0.145348,
"changePct": 0,
"yieldAtExDatePct": 1.919989,
"yieldPeriodAvgPct": 1.872899
},
{
"exDate": "1994-12-27",
"type": "Cash",
"amount": 0.149999,
"amountSplitAdj": 0.072674,
"ttm": 0.218022,
"changePct": 0,
"yieldAtExDatePct": 2.706751,
"yieldPeriodAvgPct": 2.795842
}
],
"summary": {
"count": 382,
"latestAmount": 0.271,
"latestExDate": "2026-08-31",
"ttmTotal": 3.246,
"lastPrice": 59.5,
"trailingYieldPct": 5.455462,
"indicatedYieldPct": 5.465546,
"growth1y": 1.564456,
"growth3y": 2.321908,
"cadence": "Monthly"
}
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Dividends
Cash dividend history by ex-date: as-paid and split-adjusted amounts, trailing-12-month total, change vs the prior payment, and each payment’s yield AT THE TIME on two price bases — yieldAtExDatePct (TTM ÷ the last split-adjusted close before the ex-date) and yieldPeriodAvgPct (TTM ÷ the average close from the previous ex-date to the day before this one). summary carries the current trailing and indicated yield, cadence and DPS growth; yieldSeries is the month-end trailing-yield history.
curl --request GET \
--url https://astreus.ai/api/v1/companies/{id}/dividends \
--header 'X-API-KEY: <api-key>'import requests
url = "https://astreus.ai/api/v1/companies/{id}/dividends"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://astreus.ai/api/v1/companies/{id}/dividends', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://astreus.ai/api/v1/companies/{id}/dividends",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://astreus.ai/api/v1/companies/{id}/dividends"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://astreus.ai/api/v1/companies/{id}/dividends")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://astreus.ai/api/v1/companies/{id}/dividends")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"cik": "0000726728",
"symbol": "O",
"currency": "USD",
"events": [
{
"exDate": "1994-10-26",
"type": "Cash",
"amount": 0.149999,
"amountSplitAdj": 0.072674,
"ttm": 0.072674,
"changePct": null,
"yieldAtExDatePct": 0.875907,
"yieldPeriodAvgPct": 0.881268
},
{
"exDate": "1994-11-25",
"type": "Cash",
"amount": 0.149999,
"amountSplitAdj": 0.072674,
"ttm": 0.145348,
"changePct": 0,
"yieldAtExDatePct": 1.919989,
"yieldPeriodAvgPct": 1.872899
},
{
"exDate": "1994-12-27",
"type": "Cash",
"amount": 0.149999,
"amountSplitAdj": 0.072674,
"ttm": 0.218022,
"changePct": 0,
"yieldAtExDatePct": 2.706751,
"yieldPeriodAvgPct": 2.795842
}
],
"summary": {
"count": 382,
"latestAmount": 0.271,
"latestExDate": "2026-08-31",
"ttmTotal": 3.246,
"lastPrice": 59.5,
"trailingYieldPct": 5.455462,
"indicatedYieldPct": 5.465546,
"growth1y": 1.564456,
"growth3y": 2.321908,
"cadence": "Monthly"
}
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Authorizations
Astreus API key (pk_live_...), created on the Developers page in the terminal. Also accepted as Authorization: Bearer pk_live_....
Path Parameters
Ticker symbol (e.g. NVDA), numeric SEC CIK (zero-padding optional), or the platform key of a non-SEC issuer (e.g. XSAU000001 — the cik field of the company payload). A bare ticker always resolves to the SEC registrant.
Response
OK
The response is of type object.