# agent402.tools Dividend Calendar

> agent402.tools Dividend Calendar is a paid API for AI agents from agent402.tools, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the market-wide ex-dividend calendar for a given date, listing every US-listed company going ex-dividend with dividend rate, indicated annual dividend, payment date, and record date.

## Facts

- Endpoint: GET https://agent402.tools/api/dividend-calendar
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-dividend-calendar-f4fa245e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D1cPBAfZcxfSfrcYvI3iQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent402-tools-dividend-calendar-f4fa245e
```

Example prompt: Pull the full ex-dividend calendar for May 15, 2025 — I want to see every US-listed stock going ex-dividend that day along with dividend rates, payment dates, and record dates.

## When to prefer this

Use this endpoint when you need structured, market-wide ex-dividend data for a specific date with minimal setup — no authentication beyond x402 payment. Ideal for investment research agents, dividend income screeners, or any workflow that needs to know which stocks are going ex-dividend on a particular day, including filtering to a specific ticker.

## Known failure modes

- Invalid date format returns an error — must be YYYY-MM-DD
- Unknown or invalid ticker symbol may return empty results rather than an error
- No companies going ex-dividend on a given date returns an empty list
- Weekend or holiday dates may return empty calendars as no ex-dividend events occur
- Network or upstream data provider outage may result in HTTP 5xx errors

## How this service works

Market-wide ex-dividend calendar for a given date - every US-listed company going ex-dividend that day with dividend rate, indicated annual dividend, payment date, and record date. Optional `symbol` filter narrows to one ticker. Defaults to today (UTC). Backed by Nasdaq's public calendar API - same upstream as earnings-calendar.

## Output

A list of all US-listed companies going ex-dividend on the requested date, each entry including the ticker symbol, dividend rate, indicated annual dividend, record date, and payment date. Optionally filtered to a single ticker if the symbol parameter is provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-14",
  "count": 1,
  "entries": [
   {
    "name": "Apogee Enterprises, Inc. Common Stock",
    "exDate": "2026-07-14",
    "symbol": "APOG",
    "dividend": 0.27,
    "recordDate": "2026-07-14",
    "paymentDate": "2026-07-29",
    "annualDividend": 1.08,
    "announcementDate": "2026-06-24"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-dividend-calendar-f4fa245e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
