Pricing
from $10.00 / 1,000 results
Go to Apify Store
Rich mode (
Flat mode (
Free Dictionary
Looks up English words and returns definitions, phonetics, synonyms, antonyms, and examples. Useful for writing apps, vocabulary tools, NLP tasks, and auto-generating glossaries.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Actor stats
0
Bookmarked
2
Total users
0
Monthly active users
7 days ago
Last modified
Categories
Share
Free Dictionary Actor
An Apify Actor that looks up English word definitions, phonetics, synonyms, antonyms, and usage examples.
What it does
Feed it a list of words and get back structured dictionary data β perfect for:
- Writing & education apps β enrich content with definitions and examples
- Vocabulary builders β batch-generate word cards with synonyms/antonyms
- NLP pipelines β gather linguistic data for analysis
- Content tools β auto-generate glossaries or tooltips
Input
| Field | Type | Default | Description |
|---|---|---|---|
words | string[] | required | Words to look up (e.g. ["hello", "serendipity"]) |
includePhonetics | boolean | true | Include phonetic transcriptions and audio URLs |
includeSynonyms | boolean | true | Include synonyms |
includeAntonyms | boolean | true | Include antonyms |
flattenOutput | boolean | false | One row per definition (great for CSV export) |
maxRetries | integer | 2 | Retries per word on failure (0β5) |
Example input
{"words":["hello","serendipity","ephemeral"],"includeSynonyms":true,"flattenOutput":true}
Output
Rich mode (flattenOutput: false) β one object per word
{"word":"hello","found":true,"phonetic":"/hΙΛloΚ/","phonetics":[{"text":"/hΙΛloΚ/","audio":"https://..."}],"meanings":[{"partOfSpeech":"noun","definitions":[{"definition":"\"Hello!\" or an equivalent greeting.","example":"She gave a bright hello."}],"synonyms":["greeting"]}],"sourceUrls":["https://en.wiktionary.org/wiki/hello"]}
Flat mode (flattenOutput: true) β one row per definition
| word | phonetic | partOfSpeech | definition | example | synonyms | antonyms |
|---|---|---|---|---|---|---|
| hello | /hΙΛloΚ/ | noun | "Hello!" or an equivalent greeting. | She gave a bright hello. | greeting | |
| hello | /hΙΛloΚ/ | verb | To greet with "hello". |
