> For the complete documentation index, see [llms.txt](https://docs.telcoin.network/telcoin-network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.telcoin.network/telcoin-network/readme-1/net_listening.md).

# net\_listening

#### Parameters

`None`

#### Returns

`Boolean` - `true` when listening, otherwise `false`.

#### Example

#### Request

```
curl https://rpc.adiri.tel \
 -X POST \
 -H "Content-Type: application/json" \
 --data '{"jsonrpc":"2.0","method":"net_listening","params":[],"id":67}'
```

#### Result

```
{
    "id":67, 
    "jsonrpc":"2.0", 
    "result":true
}
```

[source](https://ethereum.org/en/developers/docs/apis/json-rpc/#net_listening)
