Returns a block trace object containing retired actions and related metadata.
| block_num required | integer Provide a |
{- "block_num": 1000
}{- "id": "string",
- "number": 0,
- "previous_id": "string",
- "status": "string",
- "timestamp": "string",
- "producer": "string",
- "transactions": [
- {
- "id": "string",
- "actions": [
- {
- "global_sequence": 0,
- "receiver": "string",
- "account": "string",
- "action": "string",
- "authorization": [
- {
- "account": "string",
- "permission": "string"
}
], - "data": { }
}
]
}
]
}Returns the trace information for a specific transaction by its ID. This endpoint searches for the block containing the transaction and returns the full transaction trace.
| id required | string [ 8 .. 64 ] characters The transaction ID (hash) to retrieve the trace for. Must be between 8 and 64 characters. |
{- "id": "02ca32345cc025052c8fe119516aa6086e14a333eddc4433283ecf50374e2b06"
}{- "id": "02ca32345cc025052c8fe119516aa6086e14a333eddc4433283ecf50374e2b06",
- "block_num": 12345,
- "block_time": "2025-02-07T18:50:13.000",
- "producer_block_id": "0000303939c5b8b5c6d7e8f9...",
- "status": "executed",
- "cpu_usage_us": 250,
- "net_usage_words": 12,
- "actions": [
- {
- "receiver": "sysio.token",
- "account": "sysio.token",
- "action": "transfer",
- "authorization": [
- {
- "actor": "alice",
- "permission": "active"
}
], - "data": {
- "from": "alice",
- "to": "bob",
- "quantity": "1.0000 SYS",
- "memo": "test transfer"
}
}
]
}