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
Copy file name to clipboardexpand all lines: developer-tools/dashboard/how-to/secure-an-api/set-rate-limits.md
+16
Original file line number
Diff line number
Diff line change
@@ -26,3 +26,19 @@ Set rate limiting in the API key's **Settings** tab **Key Credit Limits** sectio
26
26
credits per day in integers, for example, 20000. The value `0` means default limits are applied.
27
27
28
28
When the number of used credits reach this limit, all requests will be rejected until the next day (00:00 UTC).
29
+
30
+
If you exceed the specified limits, you'll receive a JSON response with an
31
+
[HTTP error status code `429`](/services/reference/ethereum/json-rpc-methods#http-errors). For example:
32
+
33
+
```json
34
+
{
35
+
"jsonrpc": "2.0",
36
+
"id": 1,
37
+
"error": {
38
+
"code": 429,
39
+
"event": -33300,
40
+
"message": "Too Many Requests",
41
+
"details": "You have surpassed your user-defined key throughput limit setting. To make more requests with this key, review key setting configurations."
0 commit comments