> For the complete documentation index, see [llms.txt](/llms.txt).

# eth_syncing

Returns an object with data about the sync status or false.

### Parameters

This method doesn't accept any parameters.

### Returns

Syncing status

Example request

```
await provider.request({
  method: 'eth_syncing',
  params: [],
})

```

Example response

```
{
  "id": 1,
  "jsonrpc": "2.0",
  "result": {
    "startingBlock": "0x0",
    "currentBlock": "0x1518",
    "highestBlock": "0x9567a3"
  }
}

```
