action wikimedia_get_transform_word_from_from_lang_to_to_lang_word { label: "Fetch the dictionary meaning of a word" description: "Fetches the dictionary meaning of a word from a language and displays\nit in the target language.\n\nStability: [unstable](https://www.mediawiki.org/wiki/API_versioning#Unstable)\n" provider: wikimedia method: GET path: "/transform/word/from/{from_lang}/to/{to_lang}/{word}" encoding: json input: { type: "object" properties: { from_lang: { type: "string" } to_lang: { type: "string" } word: { type: "string" } } required: ["from_lang", "to_lang", "word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }