Get protocol upgrade status
GEThttps://api.n00.testnet.vega.rocks/api/v2/upgrade/status
Get status of a protocol upgrade
Request
Responses
- 200
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
ready boolean
Indicator if the upgrade is ready or not.
{
"ready": true
}
An internal server error
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "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"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://api.n00.testnet.vega.rocks/api/v2/upgrade/status' \
-H 'Accept: application/json'
ResponseClear