Get Internal Transactions Of Block
GET/api/v1/blocks/:blockNumber/internal-transactions
Free [1 Credits]
Retrieve the list of internal transactions for a specific block.
Request
Path Parameters
blockNumber int64required
block number
Query Parameters
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 [
]
results
object[]
required
call_id int32required
block_id int64required
transaction_hash Transaction Hash (string)
transaction_index int32required
fee_payer Fee Payer (string)
datetime date-time
type Type (string)required
Example:
CALL,CREATE
from Address (from) (string)required
to Address (to) (string)
amount KLAY Amount Transferred (number)required
error Error Information (string)
method_id Function Bytes (string)
signature Function Name (string)
transaction_status
object
status Transaction Status (string)required
Possible values: [Success
, Fail
]
fail_message Message when Transaction Status is Fail (string)
paging
object
required
total_count int64required
current_page int32required
last booleanrequired
total_page int32required
property
object
property name* object
{
"results": [
{
"call_id": 0,
"block_id": 0,
"transaction_hash": "string",
"transaction_index": 0,
"fee_payer": "string",
"datetime": "2025-04-16T01:16:41.362Z",
"type": "CALL,CREATE",
"from": "string",
"to": "string",
"amount": 0,
"error": "string",
"method_id": "string",
"signature": "string",
"transaction_status": {
"status": "Success",
"fail_message": "string"
}
}
],
"paging": {
"total_count": 0,
"current_page": 0,
"last": true,
"total_page": 0
},
"property": {}
}
Loading...