Interface specifying allowable rate limits for an auth account. The p field indicates the path or endpoint (e.g., "/pools"), while m indicates the method-based limits (GET or POST, or both).
p
m
The method-based limit specification. For example:
{ GET: { l: 100 } }{ POST: { l: 50 } }{ GET: { l: 100 }, POST: { l: 100 } } Copy
{ GET: { l: 100 } }{ POST: { l: 50 } }{ GET: { l: 100 }, POST: { l: 100 } }
The path or endpoint to be rate-limited, e.g. "/pools" or "/router/trade".
Interface specifying allowable rate limits for an auth account. The
pfield indicates the path or endpoint (e.g., "/pools"), whilemindicates the method-based limits (GET or POST, or both).