action trakt_get_shows_id_watching { label: "Get users watching right now" description: "#### ✨ Extended Info\n\nReturns all users watching this show right now." provider: trakt method: GET path: "/shows/{id}/watching" encoding: json input: { type: "object" properties: { id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }