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

# txpool_status

> Returns the number of transactions in the pending and queued state in the txpool. Supported only on Geth clients.

### Parameters

<ParamField query="chainId" type="string" default="100" required>
  Unique identifier for a blockchain network.
</ParamField>

<ParamField body="id" type="number" default={1} required>
  Request identifier used to match responses.
</ParamField>

<ParamField body="jsonrpc" type="string" default="2.0" required>
  JSON-RPC version.
</ParamField>

<ParamField body="method" type="string" default="txpool_status" required>
  JSON-RPC method name.
</ParamField>

<ParamField body="params" type="object" default={[null]} placeholder="[null]">
  This method does not accept parameters.
</ParamField>

### Returns

<ResponseField name="result" type="object">
  Summary of transaction counts in the txpool.

  <Expandable title="properties">
    <ResponseField name="pending" type="string">
      Total number of pending transactions in hex format.
    </ResponseField>

    <ResponseField name="queued" type="string">
      Total number of queued transactions in hex format.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl --request POST \
    --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=100 \
    --header 'content-type: application/json' \
    --data '{
      "id": 1,
      "jsonrpc": "2.0",
      "method": "txpool_status",
      "params": [
        null
      ]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "result": {}
  }
  ```
</ResponseExample>
