Dictionary API
Free · LivelanguageEvery word in the English language: existence checks, autocomplete, random words, and (as scraped) full definitions.
https://api.gargantuan.dev/v1/dictionaryFull reference →Quick start
No key needed. Try a request right now:
curl "https://api.gargantuan.dev/v1/dictionary/languages"
Or open it in your browser: https://api.gargantuan.dev/v1/dictionary/languages
Authentication & limits
No key required. Anonymous callers are rate-limited by IP. Send Authorization: Bearer <key> (or an X-Api-Key header) for a higher tier.
curl "https://api.gargantuan.dev/v1/dictionary/languages" \ -H "Authorization: Bearer YOUR_API_KEY"
Also accepts X-Api-Key or ?api_key=. Limits ride in X-RateLimit-* headers; over the limit returns 429. See rate limits.
Datasets
Pick one with ?lang= (or the relevant param). 1 available:
| Dataset | Code | Locale | Entries |
|---|---|---|---|
| English | en | en | 274,937 |
Endpoints
Edit the inputs and hit Send request to try any endpoint live, right here. No key needed.
/v1/dictionary/languagesList the supported languages (datasets).
https://api.gargantuan.dev/v1/dictionary/languages/v1/dictionary/randomReturn a random word.
https://api.gargantuan.dev/v1/dictionary/random?lang=en/v1/dictionary/searchAutocomplete: words that start with a prefix.
https://api.gargantuan.dev/v1/dictionary/search?q=ser&limit=5&lang=en/v1/dictionary/{word}Look up a word: whether it exists, its length, and any definition.
https://api.gargantuan.dev/v1/dictionary/serendipity?lang=enFAQ
Is the Dictionary API free to use?
Yes. It is free and public. Anonymous requests need no key and are rate-limited by IP; a free API key raises your limits.
Do I need an API key?
No key is required to start. Send an Authorization: Bearer key (or an X-Api-Key header, or ?api_key=) to move to a higher tier.
What is the base URL?
https://api.gargantuan.dev/v1/dictionary
What are the rate limits?
Every response carries X-RateLimit-Limit and X-RateLimit-Remaining headers. Anonymous callers get the lowest tier (by IP); a free key is higher; Pro is highest. Over the limit returns 429 with Retry-After.
What format does it return?
JSON over HTTPS. Every response also includes a "source": "itsmattgeorge.com" attribution field.