I'm building an integration that polls the API every 30 seconds for new posts (yeah I know, webhooks exist, but hear me out — our infra doesn't support inbound webhooks easily).
Haven't hit any rate limits yet but I'd rather know the limits upfront than find out in production. The API docs mention rate limiting but I couldn't find specific numbers.
Questions:
- What are the rate limits per API key?
- Are they per-endpoint or global?
- Is there a rate limit header I can check? (X-RateLimit-Remaining etc.)
- Any difference between free and paid plan limits?