Introduction
v1.0.0
OAS 3.0.0

Word to Number API

Converts English words to numbers. Supports numbers up to billions.

Server:https://word-to-number.akaalroop.com
Client Libraries

Convert word(s) to number(s)

Body
required
application/json
  • word
    Type: string
  • word-1
    Type: string
  • word-2
    Type: string
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/
curl https://word-to-number.akaalroop.com/ \

  --request POST \

  --header 'Content-Type: application/json' \

  --data '{

  "word": "twenty-five million",

  "word-1": "seventeen thousand three hundred and ninety-nine",

  "word-2": "one hundred and ninety-three"

}'

{
   "number": 25000000,
   "number-1": 17399,
   "number-2": 193

}