Skip to content

Get EVM Transaction

GET /api/evm/transaction/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)
hashquerystring
addressquerystring
toquerystring
fromquerystring
method_namequerystring
method_idquerystring
contract_createdquerystring
indexqueryinteger
pagequeryinteger
limitqueryinteger
orderquery

200 — Transactions retrieved successfully

Section titled “200 — Transactions retrieved successfully”

Media: application/json

Schema
{
"type": "object",
"required": [
"pagination",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"required": [
"hash",
"block_number",
"timestamp",
"from",
"input",
"value",
"gas",
"gas_price",
"gas_used",
"cumulative_gas_used",
"effective_gas_price",
"block_hash",
"nonce",
"index",
"success"
],
"properties": {
"abi_json": {
"nullable": true
},
"args": {
"nullable": true
},
"block_hash": {
"type": "string"
},
"block_number": {
"type": "integer",
"format": "int32"
},
"contract_created": {
"type": "string",
"nullable": true
},
"cumulative_gas_used": {
"type": "string"
},
"effective_gas_price": {
"type": "string"
},
"from": {
"type": "string"
},
"full_signature": {
"type": "string",
"nullable": true
},
"gas": {
"type": "string"
},
"gas_price": {
"type": "string"
},
"gas_used": {
"type": "string"
},
"hash": {
"type": "string"
},
"hashable_signature": {
"type": "string",
"nullable": true
},
"index": {
"type": "integer",
"format": "int32"
},
"input": {
"type": "string"
},
"max_fee_per_gas": {
"type": "string",
"nullable": true
},
"max_priority_fee_per_gas": {
"type": "string",
"nullable": true
},
"method_id": {
"type": "string",
"nullable": true
},
"method_name": {
"type": "string",
"nullable": true
},
"nonce": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"to": {
"type": "string",
"nullable": true
},
"value": {
"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.