Generate checks with amounts written in words for fraud prevention.
Checks require amounts in both numeric and written form. Manual conversion is error-prone and slows down payment processing.
Automatically convert check amounts to their word form. Ensure accuracy and prevent fraud by matching numeric and written amounts.
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);