action funtranslations_get_translate_braille { label: "get_translate_braille" description: "Translate from English to Braille. This is what you use if you have a braille display. This API translates the English text into characters that a braille display understands and you can feed the translated text directly to the display." provider: funtranslations method: GET path: "/translate/braille" encoding: json input: { type: "object" properties: { text: { type: "string" } } required: ["text"] additionalProperties: false } output: { type: "object" additionalProperties: true } }