action tvmaze_get_scrobble_shows_show_id { label: "List watched and acquired episodes for a show" description: "This endpoint can be used by all users, even without premium" provider: tvmaze method: GET path: "/scrobble/shows/{show_id}" encoding: json output: { type: "array" items: { type: "object" properties: { _embedded: { type: "object" properties: { episode: { type: "object" } } } episode_id: { type: "integer" } marked_at: { type: "integer" description: "Epoch timestamp for when the user watched the episode, or 0 for unknown." } type: { description: "0 for watched, 1 for acquired, 2 for skipped" type: "object" } } } } }