What are the API rate limits?
Individual: limited endpoints, 10 req/min, 2,000/day.
Builder: all endpoints, 100 req/min, 20,000/day.
Scale: all endpoints, 500 req/min, 100,000/day.
Enterprise: custom.
Exceeding your limit returns HTTP 429. Implement exponential backoff and cache responses where real-time freshness isn't required.
Helpful links