Convert numeric values to their written word equivalents. Get both cardinal (one hundred) and ordinal (one hundredth) forms. Perfect for check writing, legal documents, invoices, and text-to-speech applications.
{
"status": "ok",
"error": null,
"data": {
"number": 975.07,
"words": "nine hundred seventy-five point zero seven",
"ordinal": "nine hundred seventy-fifth point zero seven",
"numberOfDigits_numeric": 3,
"numberOfDigits_words": "three",
"eachNumber": [
"nine",
"seven",
"five"
],
"afterDecimal": {
"number": "07",
"words": [
"zero",
"seven"
],
"numberOfDigits_numeric": 2,
"numberOfDigits_words": "two"
},
"locale": "en-US"
}
}






Convert numeric values to their written word equivalents. Get both cardinal (one hundred) and ordinal (one hundredth) forms. Perfect for check writing, legal documents, invoices, and text-to-speech applications.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/numbertowords?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ number, words, ordinal, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseAutomatically convert check amounts to their word form. Ensure accuracy and prevent fraud by matching numeric and written amounts.
Automatically convert all numbers in legal documents to their written equivalents. Ensure clarity and reduce disputes over numeric values.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/numbertowords?number=975.07", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
Understand the difference between cardinal and ordinal number forms and when to use each.
Learn the standard conventions for writing monetary amounts in words on checks and legal documents.
Understanding how different number systems represent values and convert between forms.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog