Jump to
Ctrl
+
/

List Internal Transactions By Address

GET
/blockchain-data/{blockchain}/{network}/addresses/{address}/internal

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

Please be advised that retrieving Polygon (beta) & Base (beta) & Optimism (beta) & Arbitrum (beta) & Avalanche (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.

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.

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
minedInBlockHash string Required

Represents the hash of the block where this transaction was mined/confirmed for first time. The hash is defined as a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.

0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66
parentHash string Required

Defines the specific hash of the parent transaction.

0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a
amount string Required

String representation of the amount that was transacted

0.025
minedInBlockHeight string 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
timestamp integer Required
1582202940
id string Required

Record identificator used for pagination startingAfter

65f8d5e0c35b1cca17c9af05

Credits Cost : 1000 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": [
            {
                "minedInBlockHash": "0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66",
                "parentHash": "0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a",
                "amount": "0.025",
                "minedInBlockHeight": "56009972",
                "operationID": "call_0_0",
                "operationType": "CALL",
                "recipient": "0xc946cb236481c159f460b212b34ab246dac37fcd",
                "sender": "0xadf10d7f6a7069c11fc5f3c6c9b4f419b326bcbc",
                "timestamp": 1582202940,
                "id": "65f8d5e0c35b1cca17c9af05"
            }
        ]
    }
}