You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Public endpoints - We throttle public endpoints by IP: 10 requests per second, up to 15 requests per second in bursts. Some endpoints may have custom rate limits.
50
+
* Private endpoints - We throttle private endpoints by profile ID: 15 requests per second, up to 30 requests per second in bursts. Some endpoints may have custom rate limits.
51
+
* fills endpoint has a custom rate limit of 10 requests per second, up to 20 requests per second in bursts. */
52
+
RateLimit=newRateGate(9,TimeSpan.FromSeconds(1));// set to 9 to be safe
0 commit comments