Hi Guys
I wanted to check to see if there was a plan to make the API's pageable? For example http://api.tvmaze.com/shows/83/episodes currently returns 559 items. It would be great if it could take the form:
http://api.tvmaze.com/shows/83/episodes ? start=100&count=10
to return items 100 through 109. (every time I put the concatenated form of the URL into the form posting, it put ellipses on the end of the text and converted it into a link, so I added the spaces to stop this happening!). If this were to happen, it would also be great if the returned data could have a header that tells the client how many items are available, ie:
{
header: { total: 559, start:: 100, count: 10},
data : [ <array of response data> ]
}
The same would be nice for the schedule API by adding a time range?
This would allow me to manage the memory footprint of an application client side.
Cheers
Matt
