Build vocabulary-rich learning experiences with instant word lookups and pronunciation guides.
Educational apps need rich vocabulary data to help students learn. Manual dictionary lookups interrupt the learning flow, and building your own dictionary database is impractical.
Integrate our Dictionary API to provide instant definitions, pronunciation, and etymology within your learning platform. Students can click any word to learn more without leaving your app.
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);