Google does not provide API for Google Dictionary so I created one.
The basic syntax of a URL request to the API is shown below:
https://api.dictionaryapi.dev/api/v1/entries/<--language_code-->/<--word-->
As an example, to get definition of English word hello, you can send request to
https://api.dictionaryapi.dev/api/v1/entries/en/hello, result returned will be,
[
{
"word": "hello",
"phonetic": [
"həˈləʊ",
"hɛˈləʊ"
],
"meaning": {
"exclamation": [
{
"definition": "used as a greeting or to begin a telephone conversation.",
"example": "hello there, Katie!"
}
],
"noun": [
{
"definition": "an utterance of ‘hello’; a greeting.",
"example": "she was getting polite nods and hellos from people"
}
],
"verb": [
{
"definition": "say or shout ‘hello’.",
"example": "I pressed the phone button and helloed"
}
]
}
}
]
The API supports multiple language, you can query any language supported by sending its language code.
For example you can get definition of French word Bonjour by sending request to,
https://api.dictionaryapi.dev/api/v1/entries/fr/bonjour
[
{
"word": "bonjour",
"meaning": {
"nom_masculin": [
{
"definition": "Souhait de bonne journée (adressé en arrivant, en rencontrant).",
"synonyms": [
"salut"
]
}
]
}
}
]
List of languages supported can be found here for your reference.
Location | Endpoint |
---|---|
Root path | https://api.dictionaryapi.dev/ |
Method | Endpoint | Description | Examples |
---|---|---|---|
GET |
/api/v1/entries/<LANGUAGE>/<YOUR_WORD> |
Retrieves the Google Dictionary definition of the given word that has been entered instead of <YOUR_WORD> in the provided language <LANGUAGE> . |
/api/v1/entries/fr/bonjour |
You can see existing and add new feature proposals on the projects GitHub page. Pull requests are welcome!
If you need any assistance or find any bugs, feel free to contact me directly via email or create a new issue on the GitHub page.
The Dictionary Anywhere extension helps you stay focused on what you are reading by eliminating the need to search for meaning, Double-clicking any word will view its definition in a small pop-up bubble. Now you never have to leave what you are reading to search for the meaning of the words you don't yet know.
Extension is available for Google Chrome and Mozilla Firefox.