# Number to Words Converter (Cardinal, Ordinal, Currency)

> Number to Words Converter (Cardinal, Ordinal, Currency) is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Converts a numeric value into its English word representation in cardinal, ordinal, or currency (dollars and cents) form for use in checks, invoices, and documents.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/number-to-words
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/number-to-words-converter-cardinal-ordinal-currency-108c1ed1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kkd2WKV1ibBL4yoWLj97H

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 number-to-words-converter-cardinal-ordinal-currency-108c1ed1 -d '<json body>'
```

Example prompt: Can you write out the number 4827.50 in English words as a currency amount for a check — like 'Four Thousand Eight Hundred Twenty-Seven Dollars and Fifty Cents'?

## When to prefer this

Choose this endpoint when you need to render a number as English words for formal documents such as checks, invoices, contracts, or legal forms — especially when cardinal, ordinal, or currency formatting is required. Prefer this over generic text generation APIs when you need deterministic, consistently formatted output without the overhead of an LLM.

## Known failure modes

- Invalid or non-numeric input returns an error
- Unsupported format type (not cardinal/ordinal/currency) returns a validation error
- Extremely large numbers may exceed supported range
- Missing required fields returns a 400 bad request

## How this service works

Spell a number in English words: cardinal, ordinal, or currency (dollars and cents) form for checks and invoices.

## Output

A string containing the number expressed in English words in the requested form: cardinal (e.g. 'forty-two'), ordinal (e.g. 'forty-second'), or currency (e.g. 'Forty-Two Dollars and No Cents'), ready to embed in documents, checks, or invoices.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "form": {
   "type": "string"
  },
  "number": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "form": "cardinal",
  "words": "one thousand two hundred thirty-four",
  "number": 1234
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/number-to-words-converter-cardinal-ordinal-currency-108c1ed1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
