You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List of languages supported can be found [here](https://dictionaryapi.dev/languageCode.txt) for your reference.
133
100
101
+
### Regarding V1 Version
102
+
The API earlier use to send response as shown below, but this structure of response was found out to be difficult to work with (you can take a look at these tickets [#32](https://github.com/meetDeveloper/googleDictionaryAPI/issues/32) and [#4](https://github.com/meetDeveloper/googleDictionaryAPI/issues/4)), based on feedback in these tickets I have updated the API to _v2_ version. _v2_ version is available for all languages supported. That said, _v1_ version will always be supported for backward compatibility.
103
+
104
+
```json
105
+
[
106
+
{
107
+
"word": "hello",
108
+
"phonetic": [
109
+
"həˈləʊ",
110
+
"hɛˈləʊ"
111
+
],
112
+
"meaning": {
113
+
"exclamation": [
114
+
{
115
+
"definition": "used as a greeting or to begin a telephone conversation.",
116
+
"example": "hello there, Katie!"
117
+
}
118
+
],
119
+
"noun": [
120
+
{
121
+
"definition": "an utterance of ‘hello’; a greeting.",
122
+
"example": "she was getting polite nods and hellos from people"
123
+
}
124
+
],
125
+
"verb": [
126
+
{
127
+
"definition": "say or shout ‘hello’.",
128
+
"example": "I pressed the phone button and helloed"
0 commit comments