Rest API - Rate Limiting and Throttling
You want to build a client that stops making API calls when the limit is reached and waits until reset. Given these headers:
X-RateLimit-Limit: 100 X-RateLimit-Remaining: 0 X-RateLimit-Reset: 1686009000
What should your client do?
