> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# jsonrpc net_listening | TRON

> TRON net_listening JSON-RPC method — check if the TRON client is actively accepting network connections via the Ethereum-compatible JSON-RPC interface.

TRON API method that returns whether the client is actively listening for network connections, providing an Ethereum-compatible interface for checking TRON node connectivity status.

## Parameters

* `jsonrpc` — the JSON-RPC protocol version (always "2.0")
* `method` — the method name (always "net\_listening")
* `params` — empty array (no parameters required)
* `id` — request identifier (number or string)

## Response

* `jsonrpc` — the JSON-RPC protocol version ("2.0")
* `id` — the request identifier that matches the request
* `result` — boolean value indicating whether the client is listening for connections

## Use case

The `jsonrpc net_listening` method is used for:

* Checking if the TRON node is actively listening for network connections
* Implementing health checks and monitoring systems for node connectivity through Web3 interfaces
* Building node diagnostics tools that verify network participation status
* Creating resilient dApp architectures that can detect and respond to node connectivity issues


## OpenAPI

````yaml openapi/tron_node_api/jsonrpc_net_listening.json POST /95e61622bf6a8af293978377718e3b77/jsonrpc
openapi: 3.0.0
info:
  title: net_listening example
  version: 1.0.0
  description: >-
    This is an API example for net_listening, a method to check if the client is
    actively listening for network connections on the TRON network through
    Ethereum-compatible JSON-RPC interface.
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/jsonrpc:
    post:
      tags:
        - TRON JSON-RPC Operations
      summary: net_listening
      operationId: netListening
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: net_listening
                id:
                  type: integer
                  default: 64
                params:
                  type: array
                  default: []
                  items: {}
                  description: Empty array - no parameters required
      responses:
        '200':
          description: Boolean indicating whether the client is listening for connections
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: boolean
                    description: >-
                      True if the client is actively listening for network
                      connections, false otherwise

````