(edited by StevenL.3761)
[Feature Request] HTTP HEAD
Web Programming Lead
I’m not opposed to this, but it’s not high on our priority list for the APIs at the moment.
Thanks. Take your time.
Actually, if you could provide the same data as JSON, that would make me even happier. Something like this:
GET /v2/items/context
{
“page_size”: 50,
“page_total”: 785,
“result_total”: 39221
}
GET /v2/items/context?page_size=200
{
“page_size”: 200,
“page_total”: 197,
“result_total”: 39221
}
If you can make that happen, just forget that I even mentioned HEAD support.
The reason why I need this data is to figure out how many threads I have to spin up to retrieve all pages in parallel. Downloading the entire first page just to get those X-Page numbers is too much overhead.