get_word_definition
Retrieve word definitions, pronunciations, and meanings using dictionary API to understand vocabulary and improve language skills.
Instructions
Get the definition, pronunciation, and meanings of a word using the Dictionary API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Language code (default: en) | en |
word | Yes | The word to get the definition for |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "en",
"description": "Language code (default: en)",
"type": "string"
},
"word": {
"description": "The word to get the definition for",
"type": "string"
}
},
"required": [
"word"
],
"type": "object"
}