DividendsDividends API

OnlineCredit Usage:1 per callRefreshed 1 month ago
avg: 200ms|p50: 189ms|p75: 207ms|p90: 229ms|p99: 272ms

Overview

To use Dividends, you need an API key. You can get one by creating a free account and visiting your dashboard.

GET Endpoint

URL
https://api.apiverve.com/v1/dividends

Example

How to call the Dividends API in different programming languages.

cURL Request
curl -X GET \
  "https://api.apiverve.com/v1/dividends?ticker=AAPL&period=annual&limit=10" \
  -H "X-API-Key: your_api_key_here"
JavaScript (Fetch API)
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);
Python (Requests)
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)
Go (net/http)
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))
}
Example 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
        }
      ]
    }
  }
}

Authentication

The Dividends API requires authentication via API key. Include your API key in the request header:

Required Header
X-API-Key: your_api_key_here

Learn more about authentication →

Interactive 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:

Some Dividends parameters marked with Premium are available exclusively on paid plans.View pricing

Get Dividends by Ticker

ParameterTypeRequiredDescriptionDefaultExample
tickerstringrequired
Stock ticker symbol (e.g. AAPL, MSFT, KO)
Length: 1 - 6 chars
-AAPL
periodPremiumstringoptional
Which series to return in the history list: quarterly (default) or annual.
-annual
limitPremiumintegeroptional
Number of periods to return in the history list (1-25). Defaults to 5.
Range: 1 - 25
-10

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 Response
200 OK
<?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>
YAML Response
200 OK
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
CSV Response
200 OK
keyvalue
tickerAAPL
cik0000320193
companyApple Inc.
currencyUSD
paysDividendtrue
latestDividendPerShare0.26
latestDividendPeriodCY2026Q1
latestDividendDate2026-03-28
count5
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:

FieldTypeDescriptionExample
statusstringIndicates whether the request was successful ("ok") or failed ("error")ok
errorstring | nullContains error message if status is "error", otherwise nullnull
dataobject | nullContains 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:

Response fields marked with Premium are available exclusively on paid plans.View pricing
FieldTypeSample ValueDescription
tickerstring"AAPL"
Stock ticker symbol for the company
cikstring"0000320193"
SEC Central Index Key unique identifier
companystring"Apple Inc."
Official registered name of the company
currencystring"USD"
Currency of the dividend amounts
paysDividendbooleantrue
Whether the company reports a common-stock dividend
latestDividendPerSharenumber0.26
Most recent reported dividend per share
latestDividendPeriodstring"CY2026Q1"
Period of the most recent reported dividend (e.g. CY2025Q4)
latestDividendDatestring"2026-03-28"
Period-end date of the most recent reported dividend
countnumber5
Number of periods returned in the history list
[ ] Array items:array[5]Array of objects
Reported dividend history, most recent first
periodstring"CY2026Q1"
Reporting period (e.g. CY2025Q4 or CY2025)
periodEndstring"2026-03-28"
Period-end date for the dividend
perSharenumber0.26
Dividend per share reported for the period
formstring"10-Q"
SEC form the amount was reported on (10-Q, 10-K)
analyticsobject{...}
Derived dividend-growth summary
dividendGrowth1YPremiumnumber4.08
Year-over-year dividend growth (percent)
dividendGrowth3YCagrPremiumnumber4.26
3-year dividend growth rate, annualized (percent)
dividendGrowth5YCagrPremiumnumber5.11
5-year dividend growth rate, annualized (percent)
consecutiveYearsOfGrowthPremiumnumber7
Consecutive years the annual dividend has increased
averageAnnualGrowthRatePremiumnumber5.98
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.

Test Dividends in the GraphQL Explorer to confirm availability and experiment with queries.

Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.

GraphQL Endpoint
POST https://api.apiverve.com/v1/graphql
GraphQL Query Example
query {
  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?
Sign up for a free account at dashboard.apiverve.com. Your API key will be automatically generated and available in your dashboard. The same key works for Dividends and all other APIVerve APIs. The free plan includes 1,000 credits plus a 500 credit bonus.
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?
Yes! The Dividends API supports CORS with wildcard configuration, so you can call it directly from browser-based JavaScript without needing a proxy server. See the CORS section above for details.
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.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?