Trace API (1.0.0)
Download OpenAPI specification:Download
URL: https://eosnetwork.com License: MIT
Nodeos Trace API Specification. See developer documentation at https://docs.eosnetwork.com for information on enabling this plugin.
get block
Returns a block trace object containing retired actions and related metadata.
Authorizations:
None
Request Body schema: application/json
block_num required | integer Provide a |
Responses
Request samples
- Payload
Content type
application/json
{- "block_num": 0
}
Response samples
- 200
- 400
- 404
- 500
Content type
application/json
Example
{- "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": { }
}
]
}
]
}
transaction trace
Does a scan of the trace files looking for the transaction
Authorizations:
None
Request Body schema: application/json
id required | integer Proviade a transaction id |
Responses
Request samples
- Payload
Content type
application/json
{- "id": 0
}
Response samples
- 200
- 400
- 404
- 500
Content type
application/json
Example
{- "id": "string",
- "actions": [
- {
- "global_sequence": 0,
- "receiver": "string",
- "account": "string",
- "action": "string",
- "authorization": [
- {
- "account": "string",
- "permission": "string"
}
], - "data": { }
}
]
}