action trakt_get_all_show_translations { label: "Get all show translations" description: "Returns all translations for a show, including language and translated values for title and overview." provider: trakt method: GET path: "/shows/{id}/translations/{language}" encoding: json input: { type: "object" properties: { id: { type: "string" } language: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "language"] additionalProperties: false } output: { type: "object" additionalProperties: true } }