# Number to Words Converter

> Number to Words Converter is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts numeric values to their English word equivalents, supporting integers up to quadrillions, decimals, negatives, currency form, and ordinal form.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/number-words
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/number-to-words-converter-fc08ef67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d5pDQrFMU-iYJ7FGm7wXE

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-fc08ef67
```

Example prompt: Can you spell out 1,200,089.45 in English words, including the currency form showing dollars and cents?

## When to prefer this

Choose this endpoint when you need reliable English word representation of numbers for legal documents, checks, accessibility output, or any context requiring spelled-out numeric values — especially when you need currency-style (dollars and cents), ordinal, or negative number forms. Prefer this over manual formatting or LLM generation when precision and consistency across large numbers (up to quadrillions) are required.

## Known failure modes

- Missing or malformed 'input' query parameter returns an error
- Number exceeds supported range (beyond quadrillions) may return an error or unexpected output
- Non-numeric input strings will likely cause a parsing error
- Decimal inputs with more precision than supported may be truncated or rejected

## How this service works

Number to English words: integers up to quadrillions, decimals ('point eight nine'), negative numbers, plus a currency-style form ('one million two hundred… dollars and 89 cents'), ordinal form and digit grouping. $0.01 per call.

## Output

A text string expressing the input number in English words. Depending on the requested form: a plain word string for integers and decimals (e.g. 'one thousand two hundred'), a currency phrase (e.g. 'one thousand two hundred dollars and fifty cents'), an ordinal form (e.g. 'one thousand two hundredth'), or digit-grouped representation. Negative numbers are prefixed with 'negative' or 'minus'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/number-to-words-converter-fc08ef67/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
