> For the complete documentation index, see [llms.txt](https://docs.bwarelabs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bwarelabs.com/api-docs/avalanche-api/info-api.md).

# Info API

### Endpoint <a href="#endpoint" id="endpoint"></a>

```
/ext/info
```

### API Methods <a href="#api-methods" id="api-methods"></a>

#### info.getNodeVersion <a href="#infogetnodeversion" id="infogetnodeversion"></a>

Get the version of this node.

### **Example Call**

```
//Request
curl -X POST --data '{
    "jsonrpc":"2.0",
    "id"     :1,
    "method" :"info.getNodeVersion"
}' -H 'content-type:application/json;' https://ava-api.bwarelabs.com/<your-endpoint-id>/ext/info

//Reponse
{
    "jsonrpc": "2.0",
    "result": {
        "version":"avalanche/1.4.7"
    },
    "id": 1
}
```
