# Financial Data x402 – Dividend Data by Ticker

> Financial Data x402 – Dividend Data by Ticker is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns comprehensive dividend information for a stock ticker, including last/next dividend dates, amounts, historical dividend history, stock splits, and summary yield metrics.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/dividends/%7Bticker%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-dividend-data-by-ticker-6a1b3b3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bS1p43ydw8d5paMyqFENT

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-by-ticker-6a1b3b3a
```

Example prompt: What's the dividend situation for Johnson & Johnson — give me the yield, the next ex-dividend date, payout ratio, and a few years of dividend history.

## When to prefer this

Choose this endpoint when you need structured, pay-per-call dividend data without a long-term subscription or API key setup. It is ideal for agents that need dividend yield, payout ratios, ex-dividend dates, or split-adjusted history for any US-listed stock, billed at $0.01 USDC per call via the x402 micropayment protocol on Base or Solana.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty data
- Ticker has no dividend history (e.g. non-dividend-paying growth stocks) may return empty dividend fields
- Payment failure if USDC balance is insufficient or x402 payment is not completed
- Network timeout on the Vercel edge function
- Data may lag by hours for newly declared dividends not yet reflected in upstream source

## 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

A JSON object containing: the as-of date, ticker symbol, last dividend date and amount, next dividend payment and ex-dividend dates, full dividend history as a list of dated amounts, stock split history with ratios, and a dividend summary with payout ratio, forward/trailing annual rates, forward/trailing yield percentages, and 5-year average yield.

## 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-by-ticker-6a1b3b3a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
