# Financial Data x402 – Dividend Data

> Financial Data x402 – Dividend Data is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns current and historical dividend data for a stock ticker, including last/next dividend dates, amounts, payout ratios, yield percentages, and stock split history.

## Facts

- Endpoint: GET https://x402financialdata.com/dividends/%7Bticker%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-dividend-data-04241445
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Um0VaHYdTA_UcN8gdsDGC

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 financial-data-x402-dividend-data-04241445
```

Example prompt: What's the current dividend yield, next ex-dividend date, and recent dividend history for Johnson & Johnson (JNJ)?

## When to prefer this

Choose this endpoint when you need structured dividend data — yields, payout ratios, dividend history, and upcoming payment dates — for individual US equities, paid per-call with USDC and no API key or subscription required. Ideal for agents that need occasional dividend lookups without a recurring data subscription, or for scenarios where programmatic micropayment via x402 is preferred over credentialed API access.

## Known failure modes

- Invalid or unsupported ticker symbol returns empty or error response
- Ticker with no dividend history returns empty dividend_history array
- Payment failure via x402 protocol (insufficient USDC balance) results in 402 response with no data
- Rate limiting or service unavailability returns 5xx error
- Stale data if market data provider feed is delayed

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

Returns a JSON object with the as-of date, ticker symbol, dividend summary metrics (forward/trailing annual rate, forward/trailing yield percentage, five-year average yield, payout ratio), last dividend (date and amount), next dividend (payment date and ex-dividend date), full dividend history array (date and amount per entry), and stock split history (date, ratio, and display string).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-30",
  "ticker": "JNJ",
  "stock_splits": [
   {
    "date": "2001-06-13",
    "ratio": 2,
    "ratio_display": "2:1"
   }
  ],
  "last_dividend": {
   "date": "2026-05-26",
   "amount": 1.34
  },
  "next_dividend": {
   "payment_date": "2026-09-07",
   "ex_dividend_date": "2026-08-24"
  },
  "dividend_history": [
   {
    "date": "2026-05-26",
    "amount": 1.34
   },
   {
    "date": "2026-02-24",
    "amount": 1.3
   }
  ],
  "dividend_summary": {
   "payout_ratio": 0.6079,
   "forward_annual_rate": 5.36,
   "trailing_annual_rate": 5.24,
   "forward_dividend_yield_pct": 2.01,
   "trailing_dividend_yield_pct": 1.9645,
   "five_year_avg_dividend_yield_pct": 2.77
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-dividend-data-04241445/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
