Jump to
Ctrl
+
/

List Internal Transactions By Address And Time Range

GET
/blockchain-data/{blockchain}/{network}/addresses/{address}/internal-by-time-range

Through this endpoint customers can list internal transactions by the address attribute and the query parameters fromTimestamp and toTimestamp which gives customers the opportunity to filter the results by a specified time period.

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.

fromTimestamp integer Required

Defines the specific time/date from which the results will start being listed.

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
toTimestamp integer Required

Defines the specific time/date to which the results will be listed.

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

Defines the specific amount of the transaction.

0.089286906469667626
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
minedInBlockHeight integer Required

Represents the hight of the block where this transaction was mined/confirmed for first time. The height is defined as the number of blocks in the blockchain preceding this specific block.

11135508
operationID string Required

Represents the unique internal transaction ID in regards to the parent transaction (type trace address).

call_1
operationType string Required

Defines the call type of the internal transaction.

CALL
parentHash string Required

Defines the specific hash of the parent transaction.

0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a
recipient string Required

Represents the recipient address with the respective amount.

0xc6d46aba0c6e2eb6358c4e24804158cc4d847922
sender string Required

Represents the sender address with the respective amount.

0x0902a667d6a3f287835e0a4593cae4167384abc6
timestamp integer Required
1582202940

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": [
            {
                "amount": "0.089286906469667626",
                "minedInBlockHash": "0x85ce0aa9628726c60db14526be8a2b823084b1f4c3dcccdc10b0235f23a49e66",
                "minedInBlockHeight": 11135508,
                "operationID": "call_1",
                "operationType": "CALL",
                "parentHash": "0x5d4ea0471b70de09fa3d6a4bc32f703ec44483bffa4d6169fa0a36c6a1dc108a",
                "recipient": "0xc6d46aba0c6e2eb6358c4e24804158cc4d847922",
                "sender": "0x0902a667d6a3f287835e0a4593cae4167384abc6",
                "timestamp": 1582202940
            }
        ]
    }
}