v1
latestOpenAPI 3.0.02026-07-26268286602.5 KBblocks
List internal transactions in a specific block
Retrieves internal transactions included in a specific block with optional filtering by type and call type.
get/{chain_id}/api/v2/blocks/{block_hash_or_number_param}/internal-transactions
Path parameters
Block hash or number in the path
chain_idstring required
The ID of the blockchain
Query parameters
internal_type'call' | 'create' | 'create2' | 'reward' | 'selfdestruct' | 'stop' | 'invalid'
Filter internal transactions by type:
- all - Show all internal transactions (default)
- call - Only show call internal transactions
- create - Only show create internal transactions
- create2 - Only show create2 internal transactions
- reward - Only show reward internal transactions
- selfdestruct - Only show selfdestruct internal transactions
- stop - Only show stop internal transactions
- invalid - Only show invalid internal transactions (Arbitrum only)
call_type'call' | 'callcode' | 'delegatecall' | 'staticcall' | 'invalid'
Filter internal transactions by call type:
- all - Show all internal transactions (default)
- call - Only show call internal transactions
- callcode - Only show callcode internal transactions
- delegatecall - Only show delegatecall internal transactions
- staticcall - Only show staticcall internal transactions
- invalid - Only show invalid internal transactions (Arbitrum only)
include_zero_valueboolean
If false, zero-value call-type internal transactions are excluded from results.
items_countinteger
Number of items per page
transaction_indexinteger
Transaction index for paging
indexinteger
Item index for paging
Response
Internal transactions in the specified block.
Example response
{
"next_page_params": {
"index": 8,
"transaction_index": 3
}
}