GET /account/{id}/rated/tv
only shows series, not episodes, is that correct? If so, can we have a GET /account/{id}/rated/tv/episodes
? I'd really like to use this API, but for the use case I have in mind, the only way I could do it is to ping each episode for GET /tv/{id}/season/{season_number}/episode/{episode_number}/account_states
, which could easily exceed the rate limit.
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Travis Bell
on November 23, 2014 at 10:19 AM
Hi lotrf3,
For sure! I've created a new ticket for this here.
This will very likely be completed this week.
Cheers.
Reply by lotrf3
on December 5, 2014 at 11:29 PM
Hey, just checking in on what your timeline is for this ticket?
Also, are you planning on returning
/tv/{id}/season/{season_number}/episode/{episode_number}
style identifiers or/episode/{id}
with the ids given on episode GETs? Because those episode id's don't seem to be usable anywhere in the API; I assume they're just used as database keys?Thanks.
Reply by Travis Bell
on February 25, 2015 at 11:26 AM
Hey lotrf3,
I just pushed this live. There's 2 new methods that can help you here.
/account/{id}/rated/tv/episodes
/tv/{id}/season/{season_number}/account_states
The first one is pretty obvious, you can paginate through your rated episodes but I also added the second one which I think can be helpful. You can easily, in one call get the whole seasons account_state.
Hope these help! These are both documented in the documentation.
Cheers.
Reply by lotrf3
on February 25, 2015 at 11:35 AM
Haha, I saw you closed the issue, so started poking around
/account/{id}/rated/tv/episodes
on my own. I was just about bug you about not updating the documentation, and then you pre-empt me by 10 minutes. Thanks a lot, this is exactly what I need.