← Starknet overview
Starknet · starknet
starknet_syncing
Starknet JSON-RPC: starknet_syncing
Starknet node JSON-RPC. Reference: docs.starknet.io API
Result
See node response
Schema
{
"type": "unknown"
}Example request
Endpoint: https://your-starknet-node.azxa.io
JSON-RPC
{
"jsonrpc": "2.0",
"id": 1,
"method": "starknet_syncing",
"params": []
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": null
}cURL
curl -X POST https://your-starknet-node.azxa.io \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"starknet_syncing","params":[]}'