Get Event Logs
GET/api/v1/accounts/:accountAddress/event-logs
Free [3 Credits]
Retrieve a list of event logs associated with an account.
Request
Path Parameters
accountAddress stringrequired
account address
Query Parameters
signature string
signature hash
blockNumberStart int64
start-number of block-range
blockNumberEnd int64
end-number of block-range
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...