# Numora Dividend Yield Calculator

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

Computes the dividend yield given a stock price and dividend amount, returning the yield ratio and a human-readable description of the computation.

## Facts

- Endpoint: POST https://numomo.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-344a1d4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sO2KWqKk97-uV47xBGXnN

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

Example prompt: Calculate the dividend yield for a stock priced at $45.00 that pays an annual dividend of $1.80 — what percentage yield does that represent?

## When to prefer this

Choose this endpoint when you need a pure server-side, dependency-free computation of dividend yield without pulling live market data — ideal when you already have the price and dividend values and just need the math done reliably and cheaply via micropayment. Prefer this over building your own formula when you want a verified, human-readable result string alongside the numeric answer.

## Known failure modes

- Missing required field 'price' or 'dividend' returns a 400-level error
- Price of zero causes division-by-zero error
- Negative price or dividend values may return unexpected or erroneous results
- Non-numeric input types cause schema validation failure
- Network timeout on the Vercel serverless function under cold-start conditions

## 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 (typically as a ratio or percentage), and a computation string describing in plain English what was calculated — e.g. 'Dividend yield: 4.00% (dividend $1.80 / price $45.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-344a1d4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numomo.vercel.app](https://www.zero.xyz/host/numomo.vercel.app/llms.txt)
