action trakt_get_calendars_all_shows_new_start_date_days { label: "Get new shows" description: "#### ✨ Extended Info 🎚 Filters\n\nReturns all new show premieres (season 1, episode 1) airing during the time period specified." provider: trakt method: GET path: "/calendars/all/shows/new/{start_date}/{days}" encoding: json input: { type: "object" properties: { days: { type: "integer" } start_date: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["days", "start_date"] additionalProperties: false } output: { type: "object" additionalProperties: true } }