Discover/Cambridge API
live

Cambridge APIdictionary.cambridge.org

Access Cambridge Dictionary data via API: definitions, IPA pronunciations, synonyms, translations, collocations, corpus examples, and browsable word lists.

Endpoint health
verified 10h ago
get_word_translation
get_word_pronunciation
get_american_dictionary_entry
get_business_dictionary_entry
search_words
14/14 passing latest checkself-healing
Endpoints
14
Updated
22d ago

What is the Cambridge API?

This API exposes 14 endpoints covering the full Cambridge Dictionary surface: word definitions with all senses and parts of speech, IPA pronunciations with audio URLs, thesaurus data, bilingual translations, collocations, and corpus examples. The get_word_definition endpoint returns structured entry objects including part_of_speech, pronunciations, and nested senses arrays. Specialized endpoints target American English and Business English dictionary sections separately.

Try it
The word to look up (e.g. 'apple', 'run', 'happy')
api.parse.bot/scraper/d593a0d5-fc4e-4d24-b208-fd9143ffb8d0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d593a0d5-fc4e-4d24-b208-fd9143ffb8d0/get_word_definition?word=apple' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace dictionary-cambridge-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.cambridge_dictionary_api import CambridgeDictionary

cambridge = CambridgeDictionary()

# Look up a word definition
word = cambridge.words.get(word="happy")
print(word.word)
for entry in word.entries:
    print(entry.part_of_speech)
    for sense in entry.senses:
        for defn in sense.definitions:
            print(defn.definition)
            for ex in defn.examples:
                print(ex)

# Get pronunciation
pron = word.pronunciation()
for p in pron.pronunciations:
    print(p.region, p.ipa)

# Get thesaurus
thes = word.thesaurus()
for sense in thes.senses:
    print(sense.sense)
    for syn in sense.synonyms:
        print(syn)

# Translate a word
trans = word.translation(dict_code="english-spanish")
print(trans.dictionary)
for entry in trans.entries:
    for sense in entry.senses:
        for defn in sense.definitions:
            print(defn.definition, defn.translation)

# Search for words
for result in cambridge.words.search(query="apple"):
    print(result.text, result.url)

# Autocomplete
for suggestion in cambridge.words.autocomplete(query="happ"):
    print(suggestion.word, suggestion.beta)

# Browse alphabetically
letter_browse = cambridge.words.browse_by_letter(letter="b")
print(letter_browse.letter)
for r in letter_browse.ranges:
    print(r.range, r.url)

# Get word of the day
wotd = cambridge.words.word_of_the_day()
print(wotd.word)

# List available dictionaries
for d in cambridge.words.available_dictionaries():
    print(d.name, d.code)
All endpoints · 14 totalmissing one? ·

Fetch a full word entry from the English dictionary. Returns all senses, parts of speech, pronunciations, definitions, and examples for the given word. Each entry includes UK and US pronunciations with IPA transcriptions and audio URLs. Multiple entries may be returned when a word has distinct dictionary sections (e.g. British vs American).

Input
ParamTypeDescription
wordrequiredstringThe word to look up (e.g. 'apple', 'run', 'happy')
Response
{
  "type": "object",
  "fields": {
    "word": "string - the looked-up word",
    "entries": "array of entry objects containing part_of_speech, pronunciations, and senses with definitions and examples"
  },
  "sample": {
    "data": {
      "word": "apple",
      "entries": [
        {
          "word": "apple",
          "senses": [
            {
              "guide_word": null,
              "definitions": [
                {
                  "cefr": null,
                  "grammar": null,
                  "examples": [
                    "to peel an apple",
                    "apple pie"
                  ],
                  "definition": "a round fruit with firm, white flesh and a green, red, or yellow skin:"
                }
              ]
            }
          ],
          "part_of_speech": "noun",
          "pronunciations": [
            {
              "ipa": "ˈæp.əl",
              "audio": [
                "https://dictionary.cambridge.org/media/english/uk_pron/u/uka/ukapp/ukappen014.mp3"
              ],
              "region": "uk"
            }
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the Cambridge API

Word Lookup and Definition Data

The get_word_definition endpoint accepts a word string and returns an entries array. Each entry carries part_of_speech, a pronunciations array, and senses — each sense containing its definition text and associated example sentences. The get_american_dictionary_entry and get_business_dictionary_entry endpoints follow the same response shape but scope results to their respective dictionary sections, so asset or profit through the business endpoint returns Business English–specific senses distinct from the main entry.

Pronunciation, Thesaurus, and Translations

get_word_pronunciation returns a pronunciations array with region (uk or us), ipa transcription, and audio URLs — useful for any application that needs machine-readable phonetics. get_word_thesaurus returns senses, each with a synonyms array and an antonyms array grouped by meaning. For translation workflows, get_word_translation accepts a dict_code parameter; call get_available_dictionaries first to enumerate all valid codes and their display names, then pass the desired code to scope results to that bilingual dictionary.

Examples, Collocations, and Discovery

get_word_examples returns an examples array of sentence strings drawn from the Cambridge English Corpus when available. get_word_collocations returns collocation objects pairing definition text with example sentences that demonstrate the word combination in use. For discovery, search_words accepts a query string and returns matching entry links; autocomplete accepts a query fragment plus an optional dataset to narrow the suggestion scope; and browse_words_by_letter followed by browse_words_by_letter_range lets you walk the full alphabetical index. get_word_of_the_day requires no inputs and returns the current featured word with its full entry data.

Reliability & maintenanceVerified

The Cambridge API is a managed, monitored endpoint for dictionary.cambridge.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dictionary.cambridge.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official dictionary.cambridge.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
10h ago
Latest check
14/14 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Language learning apps displaying IPA transcriptions and audio pronunciations from get_word_pronunciation for both UK and US variants
  • Writing tools surfacing synonyms and antonyms via get_word_thesaurus grouped by sense to help users find contextually accurate word choices
  • Bilingual dictionary features using get_word_translation with a specific dict_code to show target-language definitions alongside English
  • Vocabulary builders pulling get_word_of_the_day daily to present learners with a new word and its full definition data
  • Corpus-based writing assistants enriching suggestions with real usage patterns from get_word_examples
  • Business terminology tools scoping lookups to get_business_dictionary_entry for finance and commerce vocabulary
  • Dictionary dataset pipelines walking the full word list using browse_words_by_letter and browse_words_by_letter_range to index entries systematically
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Cambridge Dictionary offer an official developer API?+
Cambridge University Press does not publish a general-purpose public REST API for dictionary data. The Cambridge Dictionary website at dictionary.cambridge.org is the canonical source for this data.
What does `get_word_translation` return and how do I know which dictionary codes to use?+
It returns an entries array with senses that include both the English definition and the translation in the target language, plus a dictionary field confirming which code was used. Before calling it, run get_available_dictionaries — that endpoint returns all valid code and name pairs you can pass as the dict_code parameter.
Does the API return etymology or word-origin data?+
Not currently. The endpoints cover definitions, pronunciations, senses, synonyms, antonyms, translations, collocations, and examples, but etymological data is not included in any response field. You can fork this API on Parse and revise it to add an endpoint targeting etymology sections if Cambridge exposes that content.
Are grammar codes or inflected forms (e.g. past tense, plural) returned in the definition response?+
The entries array in get_word_definition includes part_of_speech and senses with definitions and examples, but explicit inflected forms and grammar labels are not broken out as dedicated fields. You can fork this API on Parse and revise it to extract those fields from the entry structure.
How does browsing the word list work across multiple requests?+
Call browse_words_by_letter with a single letter to get a ranges array of alphabetical sub-ranges, each with a range_slug. Pass that slug along with the letter to browse_words_by_letter_range to retrieve the words array for that segment. There is no offset or page parameter — navigation follows the range structure the dictionary exposes.
Page content last updated . Spec covers 14 endpoints from dictionary.cambridge.org.
Related APIs in EducationSee all →
cambridge.org API
Search and retrieve English vocabulary definitions, phonetics, example sentences, and themed word lists from Cambridge Dictionary. Also access academic journal articles and their DOIs from Cambridge Core.
wordreference.com API
Search for word translations across multiple languages using WordReference's comprehensive dictionary database. Retrieve detailed meanings, usage contexts, grammatical information, and example sentences. Access public vocabulary collections and word-of-the-day features.
thesaurus.com API
Find synonyms, antonyms, related words, and usage examples for any word instantly. Look up the daily word of the day to expand your vocabulary every day.
dwds.de API
Look up German words with detailed definitions, pronunciations, and usage examples, or explore curated word lists organized by proficiency level. Search vocabulary, discover random entries, and learn the featured word of the day to build your German language skills.
datamuse.com API
Find words by meaning, sound, or rhyme, get autocomplete suggestions, and access word metadata to power your writing apps and tools. Perfect for building spell checkers, word games, and intelligent search features.
usito.usherbrooke.ca API
Look up French-Canadian word definitions, search for specific terms, and access complete conjugation tables for verbs all in one place. Browse the entire USITO dictionary by letter or explore verb conjugation models to perfect your Quebec French.
multitran.com API
Translate words and phrases across multiple languages while browsing specialized subject areas and terminology. Explore available languages, search the dictionary index, and discover professional terms organized by field of study.
verbformen.com API
Search for German words and instantly access their translations, proficiency levels (A1-C2), grammatical categories, and IPA pronunciations to enhance your language learning. Perfect for understanding vocabulary difficulty, finding word meanings, and perfecting your German pronunciation all in one place.