# Finanz Halowerk Corporate Actions

> Finanz Halowerk Corporate Actions is a paid API for AI agents from finanz.halowerk.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns SEC-sourced corporate actions (dividends and stock splits) for a given company, including declared amounts, period-over-period changes, implied annual rates, and split conversion ratios from XBRL filings.

## Facts

- Endpoint: POST https://finanz.halowerk.com/v1/corporate-actions
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finanz-halowerk-corporate-actions-deed78d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BxIkcNwPbJ0nRcIHmpYLL

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 finanz-halowerk-corporate-actions-deed78d2 -d '<json body>'
```

Example prompt: Pull the full dividend and stock split history for Coca-Cola from the SEC — I want to see the declared amount per share for each period, how much it changed from the prior declaration, and the implied annual rate, plus any split ratios.

## When to prefer this

Choose this endpoint when you need authoritative, SEC-sourced dividend and split data directly from XBRL filings rather than third-party financial data aggregators. It is ideal when regulatory accuracy matters, when you want raw declared amounts (not estimated or adjusted figures), or when you need the change between consecutive declarations and the implied annualized rate. Prefer this over market data APIs that may normalize or lag corporate action data.

## Known failure modes

- Company not found in SEC EDGAR — returns an error if the ticker or CIK is invalid or unrecognized
- No XBRL dividend or split data available — some companies may not file machine-readable XBRL for these items
- Rate limiting or upstream SEC EDGAR unavailability — may return a timeout or 503 error
- Ambiguous company identifier — if multiple entities match the input, the response may require clarification
- Payment failure — x402 micropayment of $0.005 USDC must succeed before data is returned

## How this service works

Collects the corporate actions the SEC actually carries. Dividends: declared amounts per share per period from XBRL, newest first, with the change against the previous declaration and the implied annual rate. Splits: the conversion ratio from the equity note, with the period it was reported in.

## Output

A structured response containing two sections: (1) Dividends — a list of declarations sorted newest first, each with the declared amount per share, the reporting period, the change versus the prior declaration, and an implied annual rate; (2) Splits — a list of stock split events with the conversion ratio and the period in which it was reported, all sourced directly from SEC EDGAR XBRL data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 8,
   "maximum": 20,
   "minimum": 1,
   "description": "How many entries per category."
  },
  "issuer": {
   "type": "string",
   "maxLength": 40,
   "description": "Ticker such as KO, or a CIK number."
  },
  "include_events": {
   "type": "boolean",
   "default": true,
   "description": "Include recent 8-K filings."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finanz-halowerk-corporate-actions-deed78d2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finanz.halowerk.com](https://www.zero.xyz/host/finanz.halowerk.com/llms.txt)
