Bware Docs
Home
Twitter
Linkedin
Telegram
Search…
About Bware Labs Decentralized API
API Docs
Ethereum API
Binance Smart Chain API
Avalanche API
X-Chain
C-Chain
P-Chain
Keystore API
Health API
Admin API
Info API
Metrics API
Moonbeam/Moonriver API
Astar/Shiden APIs
Fantom API
Polkadot API
Elrond API
Tutorials
Using Bware Labs Platform
Using Bware Labs Endpoint in PolkadotJs
Using Bware Labs Endpoint in Metamask
Using a Bware Labs endpoint in code
Powered By
GitBook
Info API
This API can be used to access basic information about the node.
Endpoint
1
/ext/info
Copied!
API Methods
info.getNodeVersion
Get the version of this node.
Example Call
1
//Request
2
curl -X POST --data '{
3
"jsonrpc":"2.0",
4
"id" :1,
5
"method" :"info.getNodeVersion"
6
}' -H 'content-type:application/json;' https://ava-api.bwarelabs.com/<your-endpoint-id>/ext/info
7
8
//Reponse
9
{
10
"jsonrpc": "2.0",
11
"result": {
12
"version":"avalanche/1.4.7"
13
},
14
"id": 1
15
}
Copied!
Previous
Admin API
Next
Metrics API
Last modified
1yr ago
Copy link
Contents
Endpoint
API Methods
Example Call