Quicknode provides Error Logs for your RPC endpoints. Easily identify and resolve issues by viewing detailed error information directly from your dashboard.
HTTP Error Codes
Let's look at the common HTTP Error Codes you can encounter, what they mean and what you can do to prevent them.
400Bad Request
Incorrect HTTP Request type (e.g. using GET instead of POST) or Invalid Characters
401Unauthorized
This can happen when one or multiple security requirements are not met such as incorrect Token Auth, IP not in the whitelist, invalid JWT, etc.
403Forbidden
Endpoint Disabled (One of the reasons for this could be a past due payment)
403Forbidden - custom trace not found
Custom trace code not whitelisted (Submit a ticket to go through the approval process)
404Not Found
Incorrect URL or Incorrect method
413Content Too Large
Body of the request is too large
413Request Entity Too Large
eth_getLogs and eth_newFilter are limited to a 10,000 blocks range. We enforce a limit of 10,000 block ranges when requesting logs and events.
429Too Many Requests
The requests per second (RPS) of your requests are higher than your plan allows. Learn more about the 429 errors in our support documentation.
500Internal Server Error
Submit a ticket for the support team to take a look at the errors asap
503Service Unavailable
Submit a ticket for the support team to take a look at the errors asap
HTTP Error Code Example
The code snippet below is an example of Error Code 429.
{
"jsonrpc": "2.0",
"error": {
"code": 429,
"message": "The requests per second (RPS) of your requests are higher than your plan allows."
},
"id": 1
}
Unichain RPC Error Codes
Let's look at the common Unichain RPC Error Codes you can encounter, what they mean and what you can do to prevent them.
-32000Header not found / Block not foundRPC
The requested block doesn't exist on the node. Invalid block number or the node you're hitting is not in sync yet. Use a retry mechanism with an incremental timeout
-32000Stack limit reachedRPC
Usually a smart contract error/bug - stack limit reached 1024 (1023)
-32000Method handler crashedRPC
Internal error from the blockchain client, which can be a client bug. Submit a ticket so we can double check the nodes
-32000Execution timeoutRPC
Add the timeout param in your request to override the default client timeout.
-32000Nonce too lowRPC
The nonce value specified in your transaction is lower than the next valid nonce for the sender account.
-32000Filter not foundRPC
Filter exceeded timeout; you'll have to recreate the filter once more.
-32001Resource Not FoundRPC
The requested resource does not exist or is unavailable.
-32002Resource UnavailableRPC
The requested resource is temporarily or permanently unavailable.
-32003Transaction RejectedRPC
The transaction could not be created due to validation failure or insufficient resources.
-32004Method Not SupportedRPC
The requested method is not implemented or supported by the server.
-32005Limit ExceededRPC
The request exceeds the allowed limit or quota.
-32006JSON-RPC Version Not SupportedRPC
The specified JSON-RPC version is not supported by the server.
-32010Transaction cost exceeds gas limitRPC
Gas limit is set too low
-32011Network errorRPC
This error occurs when there is a problem with the connection between the client and server, such as a timeout or a dropped connection
-32015VM execution errorRPC
Smart contract execution error
-32600Invalid requestRPC
JSON request is malformed or missing required fields. Ensure it follows the expected format
-32601Method not foundRPC
Typically a typo in the method name; check for spelling errors
-32601Failed to parse requestRPC
Incorrect request body; double check the method params
-32602Invalid params - missing 0x prefixRPC
Incorrect request; the 0x is missing from the address. the hex
-32602Block range limit exceededRPC
eth_getLogs and eth_newFilter are limited to a 10,000 blocks range. Read an in-depth explanation in our support documentation.
-32603Internal JSON-RPC errorRPC
This error is typically due to a bad or invalid payload
-32700Parse errorRPC
Invalid JSON received. The server encountered an error while parsing the JSON text
3Execution revertedRPC
The transaction was reverted during execution, likely due to failing conditions, insufficient gas, or a contract error
-32007Per-second request limit reachedQuicknode
You have exceeded your plan's per-second request limit. Reduce the number of calls per second or upgrade your plan at https://dashboard.quicknode.com/billing/plan.
-32008Per-minute request limit reachedQuicknode
You have exceeded your plan's per-minute request limit. Reduce the number of calls per minute or upgrade your plan at https://dashboard.quicknode.com/billing/plan.
-32011Method rate limit reachedQuicknode
You have exceeded a method-specific rate limit configured for the endpoint. Reduce calls to the method or adjust the method rate-limit rule.
-32604Unsupported request methodQuicknode
The request method is empty, missing, or unsupported. Provide a supported JSON-RPC method name.
-32611Request rejected by filter settingsQuicknode
The request was rejected by an endpoint security filter, such as a method allowlist or blocklist. Review the endpoint's request filter settings.
Unichain RPC Error Code Example
The code snippet below is an example of Error Code -32601.
{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": -32601,
"message": "the method eth_randomMethod does not exist/is not available"
}
}
The RPC errors defined above are a collection of common errors you can encounter while developing on chains like ETH, BSC, Polygon, etc. These chains run on multiple clients with their own error definitions. You can view the errors mentioned in the node client source here as well:
Quicknode provides logs for your RPC endpoints to help you diagnose issues. You can view logs directly in your Quicknode dashboard by navigating to:
Endpoints in the sidebar
Selecting your endpoint
Opening the Logs tab
You can filter logs by time window, response type, method, and network.
What Gets Logged
Endpoint Requests Requests made to your endpoint, including the HTTP status, request method, RPC method or path, and timestamp.
Error Details When available, failed requests include error details such as RPC error codes, request and response bodies, and links to related documentation.
Logging Limitations
Log availability can vary by method, response type, network, and plan. To maintain optimal endpoint performance, logging operates on a best-effort basis. Some logs may be dropped during high-traffic periods to preserve low latency.
Retention and Access
Build and Scale plans include dashboard access with standard log retention. Enterprise plans provide extended retention periods and programmatic API access for log retrieval.
If you're experiencing other error codes, please let us know by submitting a ticket. We're more than happy to assist