> ## 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.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.chainstack.com/feedback

```json
{
  "path": "/reference/base-clientversion",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# web3_clientVersion | Base

Base API method `web3_clientVersion` retrieves the version string of the Base client the node is running. This method is useful for identifying the client and its version, which can be important for compatibility and debugging purposes.

<Check>
  **Get your own node endpoint today**

  [Start for free](https://console.chainstack.com/) and get your app to production levels immediately. No credit card required.

  You can sign up with your GitHub, X, Google, or Microsoft account.
</Check>

## Parameters

This method does not require any parameters.

## Response

* `result` — the version string of the Base client, which typically includes the client name, version, network, platform, and other build information.

## Use case

The `web3_clientVersion` method is essential for:

* Developers and system administrators needing to verify the client version for compatibility with dApps or network protocols.
* Services that monitor and report on the distribution of client versions across the network.
* Tools that automate interactions with Base nodes and require version checks to ensure proper operation.


## OpenAPI

````yaml /openapi/base_node_api/web3_clientVersion.json POST /2fc1de7f08c0465f6a28e3c355e0cb14
openapi: 3.0.0
info:
  title: web3_clientVersion example
  version: 1.0.0
  description: >-
    This is an API example for web3_clientVersion, a method to get the version
    of the Ethereum client.
servers:
  - url: https://base-mainnet.core.chainstack.com
security: []
paths:
  /2fc1de7f08c0465f6a28e3c355e0cb14:
    post:
      tags:
        - Ethereum Client Information
      summary: web3_clientVersion
      operationId: clientVersion
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: web3_clientVersion
                id:
                  type: integer
                  default: 1
      responses:
        '200':
          description: The version of the Ethereum client
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: string
                    description: The client version string.

````