Skip to content

Get EVM Log

GET /api/evm/log/v1
NameInTypeRequiredDescription
block_numberqueryinteger
block_startqueryintegerStart of block range (inclusive)
block_endqueryintegerEnd of block range (inclusive)
timestamp_startqueryintegerStart of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
timestamp_endqueryintegerEnd of timestamp range in Unix timestamp (seconds since 1970-01-01) (inclusive)
transaction_hashquerystring
addressquerystring
event_namequerystring
topic0querystring
pagequeryinteger
limitqueryinteger
orderquery

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"id",
"transaction_hash",
"block_number",
"timestamp",
"address",
"index",
"removed"
],
"properties": {
"abi_json": {
"nullable": true
},
"address": {
"type": "string"
},
"args": {
"nullable": true
},
"block_number": {
"type": "integer",
"format": "int32"
},
"data": {
"type": "string",
"nullable": true
},
"event_name": {
"type": "string",
"nullable": true
},
"full_signature": {
"type": "string",
"nullable": true
},
"hashable_signature": {
"type": "string",
"nullable": true
},
"id": {
"type": "string"
},
"index": {
"type": "integer",
"format": "int32"
},
"removed": {
"type": "boolean"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"topic0": {
"type": "string",
"nullable": true
},
"topic1": {
"type": "string",
"nullable": true
},
"topic2": {
"type": "string",
"nullable": true
},
"topic3": {
"type": "string",
"nullable": true
},
"topic4": {
"type": "string",
"nullable": true
},
"transaction_hash": {
"type": "string"
}
}
}
},
"pagination": {
"type": "object",
"required": [
"current_page",
"per_page",
"total_items",
"total_pages"
],
"properties": {
"current_page": {
"type": "integer",
"format": "int32"
},
"next_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"per_page": {
"type": "integer",
"format": "int32"
},
"prev_page": {
"type": "integer",
"format": "int32",
"nullable": true
},
"total_items": {
"type": "integer",
"format": "int32"
},
"total_pages": {
"type": "integer",
"format": "int32"
}
}
}
}
}
Examples
{
"Result": {
"value": "{}"
}
}

Interactive request console coming soon. In the meantime you can use the OpenAPI spec with any client (Insomnia, Bruno, Scalar, curl).

All Taostats API requests require an Authorization header containing your API key. See Getting Started.