Get Transaction Event Logs
GET/api/v1/transactions/:transactionHash/event-logs
Free [3 Credits]
Retrieve the list of event logs for a specific transaction.
Request
Path Parameters
transactionHash stringrequired
transaction hash
Query Parameters
signature string
signature hash
page int32
Possible values: >= 1
Results page you want to retrieve (1..N)
Example: 1
size int32
Number of records per page, min: 1, Max: 2000
Example: 20
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
results
object[]
required
log_index int32required
contract_address Contract Address (string)required
type Type (string)
topics Topics (string)[]required
data Data (string)required
items
object[]
required
name Name (string)required
value Value (string)required
block_number int64required
transaction_hash Transaction Hash (string)
estimated_event_log Estimated Event (boolean)
paging
object
required
total_count int64required
current_page int32required
last booleanrequired
total_page int32required
property
object
property name* object
{
"results": [
{
"log_index": 0,
"contract_address": "string",
"type": "string",
"topics": [
"string"
],
"data": "string",
"items": [
{
"name": "string",
"value": "string"
}
],
"block_number": 0,
"transaction_hash": "string",
"estimated_event_log": true
}
],
"paging": {
"total_count": 0,
"current_page": 0,
"last": true,
"total_page": 0
},
"property": {}
}
Loading...