eth_syncing-Ethereum
The eth_syncing method is part of the Ethereum JSON-RPC API and is used to check the synchronization status of an Ethereum node. It returns detailed synchronization data if the node is syncing
Supported Networks
Parameters
Request
https://go.getblock.io/<ACCESS-TOKEN>/curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": "getblock.io"
}'wscat -c wss://go.getblock.io/<ACCESS-TOKEN>/
# wait for connection and send the request body
{"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": "getblock.io"}Response
Use Case
Code Example
Common Errors
Last updated
Was this helpful?