Info
Get information about the block explorer. Response contains a semver formatted version of the data node and the commit hash, from which the block explorer was built
Responses
- 200
- default
A successful response.
application/json
Schema
Example (from schema)
Schema
commitHash Commit hash from which the data node was built
version Semver formatted version of the data node
{
"commitHash": "string",
"version": "string"
}
An unexpected error response.
application/json
Schema
Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
GET /info
Request
Request
curl / cURL
curl -L -X GET 'https://be.testnet.vega.xyz/rest/info' \
-H 'Accept: application/json'
python / requests
curl -L -X GET 'https://be.testnet.vega.xyz/rest/info' \
-H 'Accept: application/json'
go / native
curl -L -X GET 'https://be.testnet.vega.xyz/rest/info' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET 'https://be.testnet.vega.xyz/rest/info' \
-H 'Accept: application/json'