Jump to
Ctrl
+
/

List Internal Transaction Details by Transaction Hash

GET
/blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/internal

Through this endpoint customers can list internal transactions along with their details by a specific attribute transactionHash, which is the parent transaction's Hash.

An internal transaction is the result of a smart contract being triggered by an EOA or a subsequent contract call.

Please be advised that retrieving Polygon (beta) data will provide you with the most recent 14 days of transactions. For access to full historical data, kindly reach out to our support team.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.

transactionHash string Required

String identifier of the parent transaction of the internal transaction represented in CryptoAPIs.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
offset integer Optional

The starting index of the response items, i.e. where the response should start listing the returned items.

Default : 0

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-25
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
offset integer Required

The starting index of the response items, i.e. where the response should start listing the returned items.

0
total integer Required

Defines the total number of items returned in the response.

100
items array Items (object) Required
blockHash string Required

Represents the hash of the block, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.

0x47245a445acd6c7a328d033313ea621fbc0642aaf913790e9d558c1c208625f0
parentHash string Required

Defines the specific hash of the parent transaction.

0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a
amount string Required

String representation of the amount that was transacted

0.089286906469667626
blockHeight string Required

Numeric representation of the block height of the transaction in which the internal transaction happened

12561919
operationID string Required

String representation of internal transaction type trace address

call_1
operationType string Required

String representation of internal transaction type

CALL
recipient string Required

String representation of the internal transaction recipient

TFdcpuD26PWL44GN5zz4TMxRNFkCiESdVV
sender string Required

String representation of the internal transaction sender

TYomb5BLbq9F3Az1uTQWvf4Be6HH1seG9Z
timestamp integer Required

Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.

1622728329
id: string Required

Record identificator used for pagination startingAfter

644902b79943250007d7bd1d

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "offset": 0,
        "total": 100,
        "items": [
            {
                "blockHash": "0x47245a445acd6c7a328d033313ea621fbc0642aaf913790e9d558c1c208625f0",
                "parentHash": "0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a",
                "amount": "0.089286906469667626",
                "blockHeight": "12561919",
                "operationID": "call_1",
                "operationType": "CALL",
                "recipient": "TFdcpuD26PWL44GN5zz4TMxRNFkCiESdVV",
                "sender": "TYomb5BLbq9F3Az1uTQWvf4Be6HH1seG9Z",
                "timestamp": 1622728329,
                "id:": "644902b79943250007d7bd1d"
            }
        ]
    }
}