action trakt_get_languages { label: "Get languages" description: "Get a list of all langauges, including names and codes." provider: trakt method: GET path: "/languages/{type}" encoding: json input: { type: "object" properties: { "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movies", "shows"] } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }