VOOZH about

URL: https://apify.com/moving_beacon-owner1/free-dictionary

⇱ Free Dictionary Β· Apify


Pricing

from $10.00 / 1,000 results

Go to Apify Store

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

πŸ‘ Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

7 days ago

Last modified

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

FieldTypeDefaultDescription
wordsstring[]requiredWords to look up (e.g. ["hello", "serendipity"])
includePhoneticsbooleantrueInclude phonetic transcriptions and audio URLs
includeSynonymsbooleantrueInclude synonyms
includeAntonymsbooleantrueInclude antonyms
flattenOutputbooleanfalseOne row per definition (great for CSV export)
maxRetriesinteger2Retries 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

wordphoneticpartOfSpeechdefinitionexamplesynonymsantonyms
hello/hΙ™Λˆloʊ/noun"Hello!" or an equivalent greeting.She gave a bright hello.greeting
hello/hΙ™Λˆloʊ/verbTo greet with "hello".

You might also like

Free Dictionary Scraper

gio21/free-dictionary-scraper

Look up word definitions, phonetics, audio pronunciation, synonyms, antonyms, examples via the Free Dictionary API. No API key. Multi-language. For dictionaries, language learning, NLP datasets.

Dictionary Word Definitions Scraper

parseforge/dictionary-api-scraper

Pull English word definitions, phonetics, audio pronunciations, parts of speech, examples, synonyms, and antonyms. Look up a word list or paste a paragraph and the Actor breaks it into per-word records. Useful for language apps, NLP, vocabulary builders, content tools.

Cambridge Dictionary Scraper

alvaraaz/cambridge-dictionary-actor

Search words in the Cambridge Dictionary with this actor. Get definitions, examples, phonetics and CEFR levels.

πŸ‘ User avatar

Jose Fernando Álvarez Romero

4

Dictionary & Thesaurus API

hanamira/dictionary-thesaurus

Look up any English word and get definitions, pronunciations with audio, synonyms, antonyms, etymology, and example sentences. Bulk word lookup supported. Perfect for writing apps, language learning tools, chatbots, and educational content.

Oxford English Dictionary

pokeball/oxford-english-dictionary

Scrape words, definitions, part of speech, percentage_popularity from the Oxford English Dictionary

Urban Dictionary Definitions Scraper

parseforge/urbandictionary-definitions-scraper

Scrape Urban Dictionary slang definitions: word, definition, example, author, thumbs up, thumbs down, date, defid, and permalink. Track new and trending internet slang, memes, and youth vocabulary. Export to JSON, CSV, or Excel for cultural research, NLP datasets, and trend monitoring.

Related articles

Python dictionaries: a comprehensive guide for devs
Read more