visch
09/22/2021, 5:08 PM/api?date_update_greaterthen=1000
(unix time lets say) and you get 100 records, then need to go to the next page. Currently you have to think about do I do the request /api?date_update_greaterthen=1000?page=2
or do I /`api?date_update_greaterthen=9932`
3. API Rate Limiting - Some APIS have limits. There's a spec I hadn't heard of before that returns headers like X-RateLimit-Limit
, X-RateLimit-Remaining
, X-RateLimit-Reset
. Reset is interesting as it gives you the time at which you can send your next API Requests. There's a spec here https://tools.ietf.org/id/draft-polli-ratelimit-headers-00.html , and a nice walk through of implementations here https://stackoverflow.com/questions/16022624/examples-of-http-api-rate-limiting-http-response-headers