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