Which API allows access to Google's Dictionary information?

I also needed Google Dictionary API for my project, it was not present so I decided to create one.

I scrapped the WebPage for the url https://www.google.com/#q=define+term where term is any word you want to get meaning of, and created the API, you can find it here Google Dictionary API.

How to use

The basic syntax of a URL request to the API is shown below:

https://api.dictionaryapi.dev/api/v2/entries/<--language_code-->/<--word-->

As an example, to get definition of English word hello, you can send request to:

https://api.dictionaryapi.dev/api/v2/entries/en/hello

The API also provides other meanings of the word, example sentences, and synonyms, if any.

If you want me to include any other details, please comment and I will happily extend the API to cover your needs.

In case you wish to see the code, it is on github.