debug_data
Get general information about the current node.
Header Parameters
x-cache-id string
Possible values: Value must match regular expression ^[a-z0-9]{32}$
An idempotent key for retrieving cached responses from the node
Responses
- 200
Successful operation
application/json
Schema
Example (from schema)
Schema
id string
The ID of the call, which corresponds to the x-cache-id used in the header
status string
The status of the call, which will be one of either "Success", "Error", or "Pending"
reason string
The reason for the status of the call. Most useful to debug errors
route string
The endpoint route that was called
content object
node_type string
The type of this node
node_api string[]
The publicly visible endpoints available on this node
node_peers string[]
The publicly visible nodes that this node is connected to
routes_pow object
create_transactions number
{
"id": "fde57c5d0e0c49f8a9e91ba5acc18cfd",
"status": "Success",
"reason": "Debug data successfully retrieved",
"route": "debug_data",
"content": {
"node_type": "Compute",
"node_api": [
"fetch_balance",
"create_item_asset",
"create_transactions"
],
"node_peers": [
"Storage"
],
"routes_pow": {
"create_transactions": 2
}
}
}
Loading...