Get information about the deployed committee
GET/v1/chains/:chainID/committee
Get information about the deployed committee
Request
Path Parameters
ChainID (Bech32)
Query Parameters
Block index or trie root
Responses
- 200
- 401
A list of all nodes tied to the chain
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
- Array [
- ]
accessNodes CommitteeNode[]required
A list of all access nodes and their peering info.
node PeeringNodeStatusResponserequired
Whether or not the peer is activated
The amount of users attached to the peer
The peering URL of the peer
The peers public key encoded in Hex
Whether or not the chain is active.
candidateNodes CommitteeNode[]required
A list of all candidate nodes and their peering info.
node PeeringNodeStatusResponserequired
Whether or not the peer is activated
The amount of users attached to the peer
The peering URL of the peer
The peers public key encoded in Hex
ChainID (Bech32-encoded).
committeeNodes CommitteeNode[]required
A list of all committee nodes and their peering info.
node PeeringNodeStatusResponserequired
Whether or not the peer is activated
The amount of users attached to the peer
The peering URL of the peer
The peers public key encoded in Hex
{
"candidateNodes": [
{
"node": {
"isAlive": true,
"peeringURL": "peeringURL",
"name": "name",
"publicKey": "publicKey",
"numUsers": 0,
"isTrusted": true
},
"accessAPI": "accessAPI"
},
{
"node": {
"isAlive": true,
"peeringURL": "peeringURL",
"name": "name",
"publicKey": "publicKey",
"numUsers": 0,
"isTrusted": true
},
"accessAPI": "accessAPI"
}
],
"committeeNodes": [
{
"node": {
"isAlive": true,
"peeringURL": "peeringURL",
"name": "name",
"publicKey": "61270151fbd8c71e43c17e0eff8c76c1ba991be28f088f72a05d790f302d67c7",
"numUsers": 6,
"isTrusted": true
},
"accessAPI": "accessAPI"
},
{
"node": {
"isAlive": true,
"peeringURL": "peeringURL",
"name": "name",
"publicKey": "61270151fbd8c71e43c17e0eff8c76c1ba991be28f088f72a05d790f302d67c7",
"numUsers": 6,
"isTrusted": true
},
"accessAPI": "accessAPI"
}
],
"chainId": "tst1pqm5ckama06xhkl080mmvz6l3xy8c8lulrwy7mx4ll0fc69krxfgka70j0e",
"accessNodes": [
{
"node": {
"isAlive": true,
"peeringURL": "peeringURL",
"name": "name",
"publicKey": "publicKey",
"numUsers": 0,
"isTrusted": true
},
"accessAPI": "accessAPI"
},
{
"node": {
"isAlive": true,
"peeringURL": "peeringURL",
"name": "name",
"publicKey": "publicKey",
"numUsers": 0,
"isTrusted": true
},
"accessAPI": "accessAPI"
}
],
"stateAddress": 1.1560770162548097e+77,
"active": true
}
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
{
"error": "string",
"missingPermission": "string"
}