Build engaging word games with valid word checking and definition reveals.
Word games need to validate player words and provide educational feedback. Building and maintaining a word validation database is expensive and time-consuming.
Use our Dictionary API to validate words and show definitions when players complete words. Combine with our Random Word API to generate game words of specific lengths or difficulty.
const res = await fetch("https://api.apiverve.com/v1/dictionary?word=apple", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);