Sure. So as it stands we have a two-tier mechanism. You’ll get the following error codes based on the rate at which you fire requests:
1) rate = 100 req/s, where you get ‘503’ if requests fire less than 10 ms apart.
2) rate = 1000/60 req/s, which accounts for 1000 requests over a sliding time window of 60 s, returning ‘429’ when exceeded.
Jamie