Hi, today we started seeing this header in the api limits when we pull get-profile with include lists = True:
1, 1;w=1, 15;w=60
Is this a new value? I guess it corresponds to XS?
This means that the limits changed for this endpoint and are now less than before? Which means we can’t pull more than 15 profiles and their list per minute (so 1 per 4 seconds)? This doesn’t sound good, it will take ages to pull just a few hundreds of profiles.
Also, we get those headers in the response:
ratelimit-limit: 1, 1;w=1, 15;w=60
ratelimit-remaining: 0
ratelimit-reset: 0
In the docs it says:
All non-rate-limited (i.e., non 429) responses will contain the following HTTP response headers that indicate the state of the steady rate limit window to the client.
but in this case, it seems it corresponds to the BURST RATE LIMIT, since the steady limit needs ~40-50 seconds in order to reset (which I can see when I hit the limits, getting 429 throttled with Retry-After ~40 seconds).
Are those bugs? How this should work? Are the docs wrong / outdated?