Info API

This API can be used to access basic information about the node.

Endpoint

/ext/info

API Methods

info.getNodeVersion

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
}

Last updated