Words API
Overview
Words API gives you instant access to definitions, synonyms, antonyms, examples, and more for over 150,000 English words via a simple REST interface. You can look up a word and retrieve rich linguistic data in a single GET request. It is a great tool for building vocabulary apps, writing assistants, or educational tools.
Beginner Tip
Start with a simple word lookup like GET /words/{word} to retrieve definitions and synonyms — no complex setup needed beyond your API key in the X-RapidAPI-Key header.
Available Data
Example Response
{
"word": "serendipity",
"phonetic": "/ˌsɛr.ənˈdɪp.ɪ.ti/",
"meanings": [
{
"partOfSpeech": "noun",
"definition": "The occurrence of events by chance in a happy way"
}
],
"synonyms": [
"luck",
"fortune",
"chance"
]
} Field Reference
word The word that was looked up. results Array of result objects, each containing a definition and related data. results[].definition A single definition of the word. results[].partOfSpeech Grammatical category such as noun, verb, or adjective. results[].synonyms List of synonyms for this particular meaning of the word. results[].examples Example sentences illustrating how the word is used in context. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://www.wordsapi.com/docs/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Collins
Collins Dictionary API gives developers access to comprehensive bilingual dictionary and thesaurus data for multiple language pairs, including English, Spanish, French, and more.
Lingua Robot
⭐ Beginner's PickLingua Robot is a dictionary API that provides word definitions, pronunciations, synonyms, antonyms, and related forms for English words via a clean JSON REST interface.
Merriam-Webster
⭐ Beginner's PickMerriam-Webster's Dictionary API provides authoritative English dictionary and thesaurus data from one of the most trusted publishers in the United States.
OwlBot
OwlBot provides programmatic access to definitions with example sentence and photo if available via REST API.
Oxford
The Oxford Dictionaries API provides access to the Oxford English Dictionary's extensive lexical data, including definitions, pronunciations, etymologies, and usage examples.