Dictionary Data
The Oxford Dictionaries API provides world-renowned dictionary data including definitions, translations, synonyms, and audio pronunciations.
import requests
app_id = "YOUR_APP_ID"
app_key = "YOUR_APP_KEY"
language = "en-gb"
word_id = "ace"
url = f"https://od-api.oxforddictionaries.com/api/v2/entries/{language}/{word_id}"
headers = {
"app_id": app_id,
"app_key": app_key
}
response = requests.get(url, headers=headers)
print(response.json())Last 50 checks (10 min intervals)