There are 171,476 words in the English language, and Wordbot knows them backward, forward, and sorted by character length. Request a hundred verbs, a thousand nouns, or even thirty-three dinosaur names, and Wordbot will instantly deliver them in a tidy array.
So glad you asked! First things first, you can request a word:
https://api.noopschallenge.com/wordbot
And you'll receive:
{
"words": ["pepperoni"]
}
Gosh, Wordbot's a mindreader! 🍕
If you need 100 words, just pass a count
param:
https://api.noopschallenge.com/wordbot?count=100
{
"words":
[
"extracorporeal",
"behooves",
"superregionals",
"stepmother",
"heckle",
"clanks",
...
"hippest"
]
}
Now you have a lot of words to work with—but they might not be exactly what you're looking for. There are, after all, a lot of words in the dictionary (did we mention 171,476?), and those words have a lot of different types: nouns, verbs, adjectives, and...like, more types that we don't even have the words to describe.
Wordbot's on your side, and has built sets of words to help you write more interesting amazingly useless software. If, for instance, you wanted to request only dinosaur names, you'd access:
https://api.noopschallenge.com/wordbot?count=100&set=dinosaurs
{
"words":
[
"Xixiposaurus",
"Ischyrosaurus",
"Crocodylomorph",
...
"Tatankaceratops"
]
}
Rawr! 🦕 Now you can replace every noun in your program with dinosaur names.
Wordbot has predefined sets for nouns, verbs, adjectives—and a number of special sets like cats, dogs, fruits, and wrestlers (complete list in the API section below).
There's a single endpoint:
api.noopschallenge.com/wordbot
The endpoint accepts two parameters, both optional:
Request a single word:
https://api.noopschallenge.com/wordbot
{
"words": ["pepperoni"]
}
Request 100 words:
https://api.noopschallenge.com/wordbot?count=100
{
"words":
[
"extracorporeal",
"behooves",
"superregionals",
"stepmother",
"heckle",
"clanks",
...
"hippest"
]
}
If you'd like to request from a predefined set of words, pass the set
parameter with one of these values:
adjectives
adverbs
animals
common
compounds
cats
dinosaurs
dogs
encouragement
fabrics
flowers
fruits
gemstones
genres
horses
instruments
knots
menu
moods
metals
nouns
objects
occupations
prepositions
rhymeless
sports
vegetables
verbs
verbs_past
weather
wrestlers
To request a set of words, pass the set
parameter, like so:
https://api.noopschallenge.com/wordbot?count=100&set=dinosaurs
{
"words":
[
"Xixiposaurus",
"Ischyrosaurus",
"Crocodylomorph",
...
"Tatankaceratops"
]
}
Complete API documentation: API.md
See who has recently forked this repository...
Want to hear about new challenges and updates?