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
logIndex int32required
contractAddress 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
blockNumber int64required
transactionHash Transaction Hash (string)
estimatedEventLog Estimated Event (boolean)
paging
object
required
totalCount int64required
currentPage int32required
last booleanrequired
totalPage int32required
property
object
property name* object
{
"results": [
{
"logIndex": 0,
"contractAddress": "string",
"type": "string",
"topics": [
"string"
],
"data": "string",
"items": [
{
"name": "string",
"value": "string"
}
],
"blockNumber": 0,
"transactionHash": "string",
"estimatedEventLog": true
}
],
"paging": {
"totalCount": 0,
"currentPage": 0,
"last": true,
"totalPage": 0
},
"property": {}
}
Loading...