# Numora Dividend Yield Calculator

> Numora Dividend Yield Calculator is a paid API for AI agents from numormo.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Computes the dividend yield by dividing the annual dividend payment by the stock price

## Facts

- Endpoint: POST https://numormo.vercel.app/api/financial/dividend
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-dividend-yield-calculator-1457ea30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GRD-MHufMnY5zP4_cXD39

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 numora-dividend-yield-calculator-1457ea30 -d '<json body>'
```

Example prompt: Calculate the dividend yield for a stock priced at $50 that pays an annual dividend of $2.50.

## When to prefer this

Choose this endpoint when you need a deterministic, pure-math dividend yield calculation with no external market data dependencies — ideal when you already have the price and dividend values and just need the ratio computed reliably. Prefer over manual calculation when embedding in an automated agent pipeline that needs structured JSON output and a human-readable description of the result.

## Known failure modes

- Missing required fields 'price' or 'dividend' returns a validation error
- Price of zero causes division-by-zero error
- Non-numeric inputs rejected with schema validation error
- Negative price or dividend may produce unexpected or negative yield values
- Payment failure via x402 micropayment returns 402 Payment Required before computation runs

## How this service works

100 pure math computation endpoints for AI agents. Statistics, financial math, linear algebra, equation solving, calculus, number theory, sequence generation, and unit conversions. Zero external dependencies. x402 micropayments on Base.

## Output

Returns a JSON object with a 'success' boolean, a 'result' object containing the computed dividend yield value, and a 'computation' string that describes in plain English what was calculated (e.g. 'Dividend yield: 5.00%').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "price",
  "dividend"
 ],
 "properties": {
  "price": {
   "type": "number"
  },
  "dividend": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "result",
  "computation"
 ],
 "properties": {
  "result": {
   "type": "object",
   "description": "Computation result varies by endpoint"
  },
  "success": {
   "type": "boolean",
   "description": "Always true on success"
  },
  "computation": {
   "type": "string",
   "description": "Human-readable description of what was computed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/numora-dividend-yield-calculator-1457ea30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormo.vercel.app](https://www.zero.xyz/host/numormo.vercel.app/llms.txt)
