action art19_get_episodes { label: "Get a list of episodes" description: "One initial filter must be provided (`ids`, `series_id`, or `season_id`), otherwise a `400 Bad Request` response\nwill be returned. Additional filters are allowed.\n\nThis API will only return episodes that your credential has permission to access, which may not be exclusive to\nyour account, depending on the filter(s) being used. Be careful to filter the results as needed.\n" provider: art19 method: GET path: "/episodes" encoding: json input: { type: "object" properties: { "ids[]": { type: "array" items: { type: "string" format: "uuid" } } included_in_inventory_calendar: { type: "string" format: "uuid" } month: { type: "string" } "page[number]": { type: "integer" } "page[size]": { type: "integer" } published: { type: "boolean" } q: { type: "string" } released_after: { type: "string" format: "date-time" } released_before: { type: "string" format: "date-time" } rss: { type: "boolean" } season_id: { type: "string" format: "uuid" } series_id: { type: "string" format: "uuid" } sort: { type: "array" items: { type: "string" enum: ["created_at", "earliest_released_at", "released_at", "released_or_created_at", "sort_title", "title", "updated_at"] } } year: { type: "string" } } required: ["page[number]", "page[size]"] additionalProperties: false } output: { type: "object" additionalProperties: true } }