# Numora Dividend Yield Calculator

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

Computes dividend yield by dividing the annual dividend per share by the stock price

## Facts

- Endpoint: POST https://numormor.netlify.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-fa372672
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X2oYamB9UNfrZW8c4IvQY

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-fa372672 -d '<json body>'
```

Example prompt: Calculate the dividend yield for a stock priced at $52.50 that pays an annual dividend of $2.10 per share.

## When to prefer this

Use this endpoint when you need a fast, dependency-free, pure-math computation of dividend yield from a given stock price and dividend value, especially in automated financial analysis pipelines using x402 micropayments on Base. Prefer over general-purpose LLM math when you need deterministic, structured numeric output.

## Known failure modes

- Missing required field 'price' — returns validation error
- Missing required field 'dividend' — returns validation error
- Price of zero causes division-by-zero error
- Non-numeric input values cause type validation failure
- Payment not included or insufficient — x402 payment required error

## 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 flag, a result object containing the computed dividend yield (typically as a ratio or percentage), and a human-readable computation string describing what was calculated.

## 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-fa372672/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormor.netlify.app](https://www.zero.xyz/host/numormor.netlify.app/llms.txt)
