GET /sync/tracking/watched/shows
{
"show": {
"id": 123,
"title": "Example Show",
"first_air_date": "2024-01-01",
"genres": ["Animation", "Anime"],
},
+ "total_aired_episodes": 10,
+ "watched_episode_count": 4,
+ "last_watched_episode": {
+ "season_number": 1,
+ "episode_number": 4
+ }
}
these fields mean someone could easily keep track of how far they have watched, and what percentage they’ve watched, without querying the extended information for a show (expensive)
