Jump to
Ctrl
+
/

List Synced Address Internal Transactions EVM

GET
/addresses-historical/evm/{blockchain}/{network}/{address}/internal

Through this endpoint customers can list internal transactions by the address attribute.

Path Parameters

blockchain string Required
network string Required
address string Required

String identifier of the address document 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.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
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
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
nextStartingAfter string Optional

Defines the id of the next page which the next list should start from.

5ca21f92cf5431000105d1a7
sortingOrder string Optional

Defines what the sorting order is either ascending or descending.

ascending
items array Items (object) Required
timestamp integer Required

Numeric representation of the timestamp in seconds since epoch

1582202940
transactionHash string Required

String representation of the hash of the transaction in which the internal transaction happened

0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a
minedInBlock object Required
hash string Required

String representation of the block hash of the transaction in which the internal transaction happened

0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66
height integer Required

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

56009972
operationId string Required

String representation of internal transaction type trace address

call_0_0
operationType string Required

String representation of internal transaction type

CALL
recipient string Required

String representation of the internal transaction recipient

0xc946cb236481c159f460b212b34ab246dac37fcd
sender string Required

String representation of the internal transaction sender

0xadf10d7f6a7069c11fc5f3c6c9b4f419b326bcbc
value object Required
amount string Required

String representation of the amount that was transacted

0.025
unit string Required

String representation of the fee unit

BNB

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "nextStartingAfter": "5ca21f92cf5431000105d1a7",
        "sortingOrder": "ascending",
        "items": [
            {
                "timestamp": 1582202940,
                "transactionHash": "0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a",
                "minedInBlock": {
                    "hash": "0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66",
                    "height": 56009972
                },
                "operationId": "call_0_0",
                "operationType": "CALL",
                "recipient": "0xc946cb236481c159f460b212b34ab246dac37fcd",
                "sender": "0xadf10d7f6a7069c11fc5f3c6c9b4f419b326bcbc",
                "value": {
                    "amount": "0.025",
                    "unit": "BNB"
                }
            }
        ]
    }
}