cambridge dictionary scraper

by dev_bodex

This Cambridge Dictionary Scraper Apify Actor automates extracting word definitions, synonyms, examples, and translations from the Cambridge Dictionar...

410 runs
4 users
Try This Actor

Opens on Apify.com

About cambridge dictionary scraper

This Cambridge Dictionary Scraper Apify Actor automates extracting word definitions, synonyms, examples, and translations from the Cambridge Dictionary. Built with Node.js and Puppeteer, it returns structured data, ideal for language processing, research, and educational use.

What does this actor do?

cambridge dictionary scraper is a web scraping and automation tool available on the Apify platform. It's designed to help you extract data and automate tasks efficiently in the cloud.

Key Features

  • Cloud-based execution - no local setup required
  • Scalable infrastructure for large-scale operations
  • API access for integration with your applications
  • Built-in proxy rotation and anti-blocking measures
  • Scheduled runs and webhooks for automation

How to Use

  1. Click "Try This Actor" to open it on Apify
  2. Create a free Apify account if you don't have one
  3. Configure the input parameters as needed
  4. Run the actor and download your results

Documentation

Cambridge Dictionary Scraper This Apify actor is designed to scrape word definitions, phonetics, pronunciations, example sentences, and other relevant linguistic data from the Cambridge Dictionary. This actor automates the process of extracting dictionary entries for specified words, making it easy to collect language data for learning, research, or integration into apps. # Features - Input Word List: Accepts a list of words to search for on the Cambridge Dictionary website. - Rich Data Collection: Scrapes various details about each word, including: Word definitions, Word phonetics (UK/US), Pronunciation audio links (UK/US), Part of speech (noun, verb, adjective, etc.), Example sentences, Synonyms and antonyms (if available) - Output Formats: Results can be downloaded in JSON format for easy integration or analysis. # How It Works This actor navigates the Cambridge Dictionary website and retrieves the requested data for each word input. It can also retrieve translations if they are provided on the dictionary page for a specific word. # Input The input is a JSON object with a list of words to scrape: javascript { "words": "Iron" } - words*: The words for which you want to retrieve dictionary entries. # Output The output is an array of objects where each object contains the information for one word. For example: javascript [{ "searchWord": "Iron", "result": { "UK Dictionary": { "partOfSpeech": "noun", "pronounce": { "UK": { "audioList": [ "https://dictionary.cambridge.org/media/english/uk_pron/u/uki/ukiri/ukiridi009.mp3", "https://dictionary.cambridge.org/media/english/uk_pron_ogg/u/uki/ukiri/ukiridi009.ogg" ], "pron": "/aɪən/" }, "US": { "audioList": [ "https://dictionary.cambridge.org/media/english/us_pron/i/iro/iron_/iron.mp3", "https://dictionary.cambridge.org/media/english/us_pron_ogg/i/iro/iron_/iron.ogg" ], "pron": "/aɪrn/" } }, "details": [ { "defintion": "a chemical element that is a common greyish-coloured metal. It is strong, used in making steel, and exists in very small amounts in blood:", "example": [ "Iron rusts easily.", "Liver is a particularly rich source of dietary iron.", "iron ore", "an iron deficiency" ] }, { "defintion": "a piece of equipment for making clothes flat and smooth that has a handle and a flat base and is usually heated with electricity:", "example": [ "a steam iron", "a travel iron" ] }, { "defintion": "a stick that has an iron or steel part at the end that is used to hit the ball in golf:", "example": [ "He'll probably use a 2 or 3 iron for the shot." ] }, { "defintion": "chains tied around someone to prevent them from escaping or moving:", "example": [ "It was common practice for the prisoners to be clapped in irons (= tied with chains)." ] }, { "defintion": "to make clothes flat and smooth using an iron:", "example": [ "It takes about five minutes to iron a shirt properly.", "Synonym\npress" ] }, { "defintion": "very strong physically, mentally, or emotionally:", "example": [ "I think you have to have an iron will to make some of these decisions." ] } ] }, "AMERICAN DICTIONARY": { "partOfSpeech": "noun", "pronounce": { "US": { "audioList": [ "https://dictionary.cambridge.org/media/english/us_pron/i/iro/iron_/iron.mp3", "https://dictionary.cambridge.org/media/english/us_pron_ogg/i/iro/iron_/iron.ogg" ], "pron": "/ˈɑɪ·ərn/" } }, "details": [ { "defintion": "a common, silver-colored, metal element that is magnetic and strong, is used in making steel, and is found in small amounts in blood and in all living things:", "example": [ "Iron rusts easily.", "Liver is a rich source of dietary iron." ] }, { "defintion": "a device with a handle and a flat metal base that can be heated and pressed against cloth to make the cloth smooth" }, { "defintion": "to make cloth smooth using an iron:", "example": [ "I have to iron this skirt.", "[ M ] Let me iron out the wrinkles in this tablecloth." ] }, { "defintion": "made of or containing iron:", "example": [ "iron ore", "an iron railing along the steps", "fig. Her success depended on physical strength and an iron will (= strong determination)." ] } ] }, "BUSINESS ENGLISH": { "partOfSpeech": "noun", "pronounce": { "UK": { "audioList": [ "https://dictionary.cambridge.org/media/english/uk_pron/u/uki/ukiri/ukiridi009.mp3", "https://dictionary.cambridge.org/media/english/uk_pron_ogg/u/uki/ukiri/ukiridi009.ogg" ], "pron": "/aɪən/" }, "US": { "audioList": [ "https://dictionary.cambridge.org/media/english/us_pron/i/iro/iron_/iron.mp3", "https://dictionary.cambridge.org/media/english/us_pron_ogg/i/iro/iron_/iron.ogg" ] } }, "details": [ { "defintion": "a common metal element used in making steel:", "example": [ "Heavy industries, like iron and steel, can take advantage of the government's increased public-works spending." ] } ] } } }] Key Scraped Data For the word, the scraper retrieves: - Word: The original word. - Phonetics: The UK and US pronunciation phonetic spellings. - Pronunciation: Links to UK and US pronunciation audio files. - Definitions: The primary meaning of the word. - Part of Speech: Whether the word is a noun, verb, adjective, etc. - Example Sentences: Sentences that show the word in context. - Synonyms and Antonyms: Related words, if available. # Output Formats JSON # Usage # On the Apify Platform 1. Go to the Cambridge Dictionary Scraper actor on Apify. 2. Click Try for Free. 3. Provide a the words in the input. 4. Run the actor and wait for it to complete. 5. Download the results. # Locally via Apify CLI 1. Install Apify CLI. 2. Run the actor locally using the following command: javascript apify run your-username/cambridge-dictionary-scraper --input='{"words": "Iron"}' # Input Example javascript { "words": ["Iron"] } This input will fetch the dictionary data for the words "Iron". # Versioning v1.0.0: Initial release with support for word scraping and detailed data extraction. # Use Cases - Language Learning Apps: Enrich your app with accurate word definitions, example sentences, and audio pronunciations. - Translation Platforms: Retrieve word translations from the Cambridge Dictionary to enhance your platform. - Education Tools: Create language exercises or vocabulary quizzes using the scraped data. - Research and Linguistic Analysis**: Collect large datasets of words, definitions, and usage examples for research purposes. # Limitations --Only words available on the Cambridge Dictionary can be scraped. --Some words may not have translations or synonyms/antonyms available.

Common Use Cases

Market Research

Gather competitive intelligence and market data

Lead Generation

Extract contact information for sales outreach

Price Monitoring

Track competitor pricing and product changes

Content Aggregation

Collect and organize content from multiple sources

Ready to Get Started?

Try cambridge dictionary scraper now on Apify. Free tier available with no credit card required.

Start Free Trial

Actor Information

Developer
dev_bodex
Pricing
Paid
Total Runs
410
Active Users
4
Apify Platform

Apify provides a cloud platform for web scraping, data extraction, and automation. Build and run web scrapers in the cloud.

Learn more about Apify

Need Professional Help?

Couldn't solve your problem? Hire a verified specialist on Fiverr to get it done quickly and professionally.

Find a Specialist

Trusted by millions | Money-back guarantee | 24/7 Support