action symanto_language_detection { label: "Language Detection" description: "Identifies what language a text is written in. Only languages that our API supports can be analyzed.\n\nReturned labels:\n* language_code of the detected language" provider: symanto method: POST path: "/language-detection" encoding: json input: { type: "array" items: { type: "object" required: ["text"] properties: { id: { type: "string" description: "id of the text." } text: { type: "string" description: "the text itself." } } } } output: { type: "array" items: { type: "object" required: ["detected_language"] properties: { detected_language: { type: "string" description: "the detected language_code corresponding to the input text." } id: { type: "string" description: "id of the post." } } } } }