VIZ RPC Reference
JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx
get_transaction
Returns a transaction by its ID. Only works within the node's history window.
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| id | string | ✓ | Transaction ID (40-char hex) |
Returns
Transaction object with ref_block_num, expiration, operations, and signatures.
Example request
curl -X POST https://node.viz.cx \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "get_transaction",
"params": {
"id": ""
}
}'Try it
Target
Method
Parameters
idstring*
Transaction ID (40-char hex)
JSON-RPC request
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_transaction",
"params": {
"id": ""
}
}POST https://node.viz.cx