Get internal transactions by transaction or address hash
GET/?module=account&action=txlistinternal
Get internal transactions by transaction or address hash
Request
Query Parameters
module stringrequired
Possible values: [account]
action stringrequired
Possible values: [txlistinternal]
apiKey stringrequired
Example: pk_1234567890
txhash string
string representing the transaction hash to check for internal transactions.
address string
string containing the address hash. Optional.
startblock integer
integer block number to start transaction search. Optional.
endblock integer
integer block number to stop transaction search. Optional.
page integer
integer representing the page number used for pagination. offset must also be provided. Optional.
offset integer
integer representing number of transactions returned per page. page must also be provided. Optional.
sort string
Possible values: [asc, desc]
sorting preference, asc for ascending and desc for descending. Descending is default. Only available if address is provided.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
message string
result object[]
status string
{
"message": "string",
"result": [
{}
],
"status": "string"
}
Loading...