Dividends API
Overview
To use Dividends, you need an API key. You can get one by creating a free account and visiting your dashboard.
GET Endpoint
https://api.apiverve.com/v1/dividendsExample
How to call the Dividends API in different programming languages.
curl -X GET \
"https://api.apiverve.com/v1/dividends?ticker=AAPL&period=annual&limit=10" \
-H "X-API-Key: your_api_key_here"const response = await fetch('https://api.apiverve.com/v1/dividends?ticker=AAPL&period=annual&limit=10', {
method: 'GET',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
response = requests.get('https://api.apiverve.com/v1/dividends?ticker=AAPL&period=annual&limit=10', headers=headers)
data = response.json()
print(data)package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/dividends?ticker=AAPL&period=annual&limit=10", nil)
req.Header.Set("X-API-Key", "your_api_key_here")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}{
"status": "ok",
"error": null,
"data": {
"ticker": "AAPL",
"cik": "0000320193",
"company": "Apple Inc.",
"currency": "USD",
"paysDividend": true,
"latestDividendPerShare": 0.26,
"latestDividendPeriod": "CY2026Q1",
"latestDividendDate": "2026-03-28",
"count": 5,
"dividends": [
{
"period": "CY2026Q1",
"periodEnd": "2026-03-28",
"perShare": 0.26,
"form": "10-Q"
},
{
"period": "CY2025Q4",
"periodEnd": "2025-12-27",
"perShare": 0.26,
"form": "10-Q"
},
{
"period": "CY2025Q2",
"periodEnd": "2025-06-28",
"perShare": 0.26,
"form": "10-Q"
},
{
"period": "CY2025Q1",
"periodEnd": "2025-03-29",
"perShare": 0.25,
"form": "10-Q"
},
{
"period": "CY2024Q4",
"periodEnd": "2024-12-28",
"perShare": 0.25,
"form": "10-Q"
}
],
"analytics": {
"dividendGrowth1Y": 4.08,
"dividendGrowth3YCagr": 4.26,
"dividendGrowth5YCagr": 5.11,
"consecutiveYearsOfGrowth": 7,
"averageAnnualGrowthRate": 5.98,
"isDividendGrower": true,
"annualHistory": [
{
"period": "CY2018",
"perShare": 0.68
},
{
"period": "CY2019",
"perShare": 0.75
},
{
"period": "CY2020",
"perShare": 0.795
},
{
"period": "CY2021",
"perShare": 0.85
},
{
"period": "CY2022",
"perShare": 0.9
},
{
"period": "CY2023",
"perShare": 0.94
},
{
"period": "CY2024",
"perShare": 0.98
},
{
"period": "CY2025",
"perShare": 1.02
}
]
}
}
}Authentication
The Dividends API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereInteractive API Playground
Test the Dividends API directly in your browser with live requests and responses.
Parameters
The following parameters are available for the Dividends API:
Get Dividends by Ticker
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
ticker | string | required | Stock ticker symbol (e.g. AAPL, MSFT, KO) Length: 1 - 6 chars | - | |
periodPremium | string | optional | Which series to return in the history list: quarterly (default) or annual. | - | |
limitPremium | integer | optional | Number of periods to return in the history list (1-25). Defaults to 5. Range: 1 - 25 | - |
Response
The Dividends API returns responses in JSON, XML, YAML, and CSV formats. The JSON response is shown in the Example section above; alternative formats below.
Other Response Formats
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>ok</status>
<error xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
<data>
<ticker>AAPL</ticker>
<cik>0000320193</cik>
<company>Apple Inc.</company>
<currency>USD</currency>
<paysDividend>true</paysDividend>
<latestDividendPerShare>0.26</latestDividendPerShare>
<latestDividendPeriod>CY2026Q1</latestDividendPeriod>
<latestDividendDate>2026-03-28</latestDividendDate>
<count>5</count>
<dividends>
<dividend>
<period>CY2026Q1</period>
<periodEnd>2026-03-28</periodEnd>
<perShare>0.26</perShare>
<form>10-Q</form>
</dividend>
<dividend>
<period>CY2025Q4</period>
<periodEnd>2025-12-27</periodEnd>
<perShare>0.26</perShare>
<form>10-Q</form>
</dividend>
<dividend>
<period>CY2025Q2</period>
<periodEnd>2025-06-28</periodEnd>
<perShare>0.26</perShare>
<form>10-Q</form>
</dividend>
<dividend>
<period>CY2025Q1</period>
<periodEnd>2025-03-29</periodEnd>
<perShare>0.25</perShare>
<form>10-Q</form>
</dividend>
<dividend>
<period>CY2024Q4</period>
<periodEnd>2024-12-28</periodEnd>
<perShare>0.25</perShare>
<form>10-Q</form>
</dividend>
</dividends>
<analytics>
<dividendGrowth1Y>4.08</dividendGrowth1Y>
<dividendGrowth3YCagr>4.26</dividendGrowth3YCagr>
<dividendGrowth5YCagr>5.11</dividendGrowth5YCagr>
<consecutiveYearsOfGrowth>7</consecutiveYearsOfGrowth>
<averageAnnualGrowthRate>5.98</averageAnnualGrowthRate>
<isDividendGrower>true</isDividendGrower>
<annualHistory>
<item>
<period>CY2018</period>
<perShare>0.68</perShare>
</item>
<item>
<period>CY2019</period>
<perShare>0.75</perShare>
</item>
<item>
<period>CY2020</period>
<perShare>0.795</perShare>
</item>
<item>
<period>CY2021</period>
<perShare>0.85</perShare>
</item>
<item>
<period>CY2022</period>
<perShare>0.9</perShare>
</item>
<item>
<period>CY2023</period>
<perShare>0.94</perShare>
</item>
<item>
<period>CY2024</period>
<perShare>0.98</perShare>
</item>
<item>
<period>CY2025</period>
<perShare>1.02</perShare>
</item>
</annualHistory>
</analytics>
</data>
</response>
status: ok
error: null
data:
ticker: AAPL
cik: '0000320193'
company: Apple Inc.
currency: USD
paysDividend: true
latestDividendPerShare: 0.26
latestDividendPeriod: CY2026Q1
latestDividendDate: '2026-03-28'
count: 5
dividends:
- period: CY2026Q1
periodEnd: '2026-03-28'
perShare: 0.26
form: 10-Q
- period: CY2025Q4
periodEnd: '2025-12-27'
perShare: 0.26
form: 10-Q
- period: CY2025Q2
periodEnd: '2025-06-28'
perShare: 0.26
form: 10-Q
- period: CY2025Q1
periodEnd: '2025-03-29'
perShare: 0.25
form: 10-Q
- period: CY2024Q4
periodEnd: '2024-12-28'
perShare: 0.25
form: 10-Q
analytics:
dividendGrowth1Y: 4.08
dividendGrowth3YCagr: 4.26
dividendGrowth5YCagr: 5.11
consecutiveYearsOfGrowth: 7
averageAnnualGrowthRate: 5.98
isDividendGrower: true
annualHistory:
- period: CY2018
perShare: 0.68
- period: CY2019
perShare: 0.75
- period: CY2020
perShare: 0.795
- period: CY2021
perShare: 0.85
- period: CY2022
perShare: 0.9
- period: CY2023
perShare: 0.94
- period: CY2024
perShare: 0.98
- period: CY2025
perShare: 1.02
| key | value |
|---|---|
| ticker | AAPL |
| cik | 0000320193 |
| company | Apple Inc. |
| currency | USD |
| paysDividend | true |
| latestDividendPerShare | 0.26 |
| latestDividendPeriod | CY2026Q1 |
| latestDividendDate | 2026-03-28 |
| count | 5 |
| dividends | [{period:CY2026Q1,periodEnd:2026-03-28,perShare:0.26,form:10-Q},{period:CY2025Q4,periodEnd:2025-12-27,perShare:0.26,form:10-Q},{period:CY2025Q2,periodEnd:2025-06-28,perShare:0.26,form:10-Q},{period:CY2025Q1,periodEnd:2025-03-29,perShare:0.25,form:10-Q},{period:CY2024Q4,periodEnd:2024-12-28,perShare:0.25,form:10-Q}] |
| analytics | {dividendGrowth1Y:4.08,dividendGrowth3YCagr:4.26,dividendGrowth5YCagr:5.11,consecutiveYearsOfGrowth:7,averageAnnualGrowthRate:5.98,isDividendGrower:true,annualHistory:[{period:CY2018,perShare:0.68},{period:CY2019,perShare:0.75},{period:CY2020,perShare:0.795},{period:CY2021,perShare:0.85},{period:CY2022,perShare:0.9},{period:CY2023,perShare:0.94},{period:CY2024,perShare:0.98},{period:CY2025,perShare:1.02}]} |
Response Structure
All API responses follow a consistent structure with the following fields:
| Field | Type | Description | Example |
|---|---|---|---|
status | string | Indicates whether the request was successful ("ok") or failed ("error") | ok |
error | string | null | Contains error message if status is "error", otherwise null | null |
data | object | null | Contains the API response data if successful, otherwise null | {...} |
Learn more about response formats →
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value | Description |
|---|---|---|---|
ticker | string | Stock ticker symbol for the company | |
cik | string | SEC Central Index Key unique identifier | |
company | string | Official registered name of the company | |
currency | string | Currency of the dividend amounts | |
paysDividend | boolean | Whether the company reports a common-stock dividend | |
latestDividendPerShare | number | Most recent reported dividend per share | |
latestDividendPeriod | string | Period of the most recent reported dividend (e.g. CY2025Q4) | |
latestDividendDate | string | Period-end date of the most recent reported dividend | |
count | number | Number of periods returned in the history list | |
| [ ] Array items: | array[5] | Reported dividend history, most recent first | |
└ period | string | Reporting period (e.g. CY2025Q4 or CY2025) | |
└ periodEnd | string | Period-end date for the dividend | |
└ perShare | number | Dividend per share reported for the period | |
└ form | string | SEC form the amount was reported on (10-Q, 10-K) | |
analytics | object | Derived dividend-growth summary | |
└ dividendGrowth1YPremium | number | Year-over-year dividend growth (percent) | |
└ dividendGrowth3YCagrPremium | number | 3-year dividend growth rate, annualized (percent) | |
└ dividendGrowth5YCagrPremium | number | 5-year dividend growth rate, annualized (percent) | |
└ consecutiveYearsOfGrowthPremium | number | Consecutive years the annual dividend has increased | |
└ averageAnnualGrowthRatePremium | number | Average year-over-year dividend growth across the series (percent) |
Headers
Only X-API-Key is required. Optional headers include Accept for response format negotiation (JSON, XML, or YAML), User-Agent, and X-Request-ID for request tracing. See all request headers →
GraphQL AccessALPHA
Access Dividends through GraphQL to combine it with other API calls in a single request. Query only the dividends data you need with precise field selection, and orchestrate complex data fetching workflows.
Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.
POST https://api.apiverve.com/v1/graphqlquery {
dividends(
input: {
ticker: "AAPL"
period: "annual"
limit: 10
}
) {
ticker
cik
company
currency
paysDividend
latestDividendPerShare
latestDividendPeriod
latestDividendDate
count
dividends
analytics {
dividendGrowth1Y
dividendGrowth3YCagr
dividendGrowth5YCagr
consecutiveYearsOfGrowth
averageAnnualGrowthRate
isDividendGrower
annualHistory
}
}
}Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.
CORS Support
The Dividends API accepts cross-origin requests from any origin, so it can be called directly from browser-based applications without a proxy. See CORS support →
Rate Limiting
Dividends requests are throttled per minute on the Free plan and unthrottled on paid plans. Exceeding the limit returns 429 Too Many Requests; rate-limit usage is reported in the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset response headers. See per-plan limits and best practices →
Error Codes
The Dividends API uses standard HTTP status codes — 200 on success, 400 for invalid parameters, 401 for missing or invalid keys, 403 for insufficient credits, 429 for rate-limit exhaustion, and 500/503 for server-side issues. Each error response includes an X-Request-ID header you can quote when contacting support. See full error handling guide →
SDKs for Dividends
Official Dividends packages on npm, PyPI, NuGet, and JitPack — plus a Postman collection and an OpenAPI spec. See the SDK guide →
No-Code Integrations
Dividends works with Zapier, Make, Pipedream, n8n, and Power Automate using the same API key. See setup guides →
Frequently Asked Questions
How do I get an API key for Dividends?
How many credits does Dividends cost?
Each successful Dividends API call consumes credits based on plan tier. Check the pricing section above for the exact credit cost. Failed requests and errors don't consume credits, so you only pay for successful dividends lookups.
Can I use Dividends in production?
The free plan is for testing and development only. For production use of Dividends, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.
Can I use Dividends from a browser?
What happens if I exceed my Dividends credit limit?
When you reach your monthly credit limit, Dividends API requests will return an error until you upgrade your plan or wait for the next billing cycle. You'll receive notifications at 80% and 95% usage to give you time to upgrade if needed.








