Free Dictionary API
Overview
Free Dictionary provides programmatic access to definitions, phonetics, pronounciations, parts of speech, examples, synonyms via REST API.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://api.dictionaryapi.dev/api/v2/entries/en/hello
- Result
- HTTP 200 · application/json · 2,007 bytes · compressed
- Response time
- 35 ms (median of 3) · fastest 33 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Google Trust Services
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Rate limit
- 450 per window (448 remaining at test time)
- Served by
- cloudflare
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| word | string | hello |
| phonetics | array | [1 item] |
| meanings | array | [1 item] |
| license | object | {2 fields} |
| sourceUrls | array | [1 item] |
Captured Response
Captured from a real request to https://api.dictionaryapi.dev/api/v2/entries/en/hello on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
[
{
"word": "hello",
"phonetics": [
{
"…": "(3 more fields)"
}
],
"meanings": [
{
"…": "(4 more fields)"
}
],
"license": {
"name": "CC BY-SA 3.0",
"url": "https://creativecommons.org/licenses/by-sa/3.0"
},
"sourceUrls": [
"https://en.wiktionary.org/wiki/hello"
]
}
] Implementation Example
Request skeleton. The URL below is this API's documentation page, not a live endpoint — swap in the path you need from the provider's docs before running it.
const url = "https://dictionaryapi.dev/";
const response = await fetch(url);
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.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
Returned an HTML error page rather than JSON — worth knowing if your client assumes every response can be parsed as JSON.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Chinese Character Web
⭐ Beginner's PickChinese Character Web is a free API providing definitions, stroke counts, and pronunciations for Chinese characters without requiring an API key.
Chinese Text Project
⭐ Beginner's PickChinese Text Project offers a free API to access a massive digital library of pre-modern Chinese texts, including classics like the Analects and Tao Te Ching.
Wiktionary
⭐ Beginner's PickWiktionary's API gives free access to the entire collaboratively-edited dictionary, covering definitions, pronunciations, etymology, and translations for words in hundreds of languages.
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.