Jump to
Ctrl
+
/

List Confirmed Transactions By Address EVM history

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

This endpoint will list transactions by an attribute address. The transactions listed will detail additional information such as hash, height, time of creation in Unix timestamp, etc.

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

Represents the public address, which is a compressed and shortened form of a public key.

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

String representation of the transaction contract address

0xdAC17F958D2ee523a2206206994597C13D831ec7
gasPrice object Required
unit string Required

String representation of the transaction price unit

WEI
amount string Required

String representation of the transaction gas price

123456
fee object Required

Object representation of the transaction fee

amount string Required

String representation of the fee value

31
unit string Required

String representation of the fee unit.

TRX
gasLimit integer Required

String representation of the transaction gas limit

210000
gasUsed integer Required

String representation of the transaction used gas

21000
hash string Required

String representation of the transaction hash

4259f7eeb8619c7578a2f78b27dd849dba0760db2e0fa61feec0f948a20b6b3c
inputData string Required

Numeric representation of the transaction input

positionInBlock integer Required

Numeric representation of the transaction index

10
recipient string Required

String representation of the transaction to address

TRRRpTqaYnBN9EUYXwtAdaSamNNTP2XVr4
sender string Required

String representation of the transaction from address

TQrY8tryqsYVCYS3MFbtffiPp2ccyn4STm
status string Required

String representation of the transaction status

0x1
timestamp integer Required

Numeric representation of the timestamp in seconds since epoch

1739363524
value object Required

Object representation of the transacted amount

unit string Required

String representation of the amount unit.

TRX
amount string Required

String representation of the transacted amount

25
minedInBlock object Required
hash string Required

String representation of the block hash

0000000004258f50e41a9128f5b6db83ef5bed4e491c4814576acda264f5f42f
height integer Required

Numeric representation of the block height

69570384
blockchainSpecific object Optional
bandwithUsed integer Required

Numeric representation of the transaction used bandwidth

45
energyUsed string Required

String representation of the transaction used energy

276

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": [
            {
                "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
                "gasPrice": {
                    "unit": "WEI",
                    "amount": "123456"
                },
                "fee": {
                    "amount": "31",
                    "unit": "TRX"
                },
                "gasLimit": 210000,
                "gasUsed": 21000,
                "hash": "4259f7eeb8619c7578a2f78b27dd849dba0760db2e0fa61feec0f948a20b6b3c",
                "inputData": "",
                "positionInBlock": 10,
                "recipient": "TRRRpTqaYnBN9EUYXwtAdaSamNNTP2XVr4",
                "sender": "TQrY8tryqsYVCYS3MFbtffiPp2ccyn4STm",
                "status": "0x1",
                "timestamp": 1739363524,
                "value": {
                    "unit": "TRX",
                    "amount": "25"
                },
                "minedInBlock": {
                    "hash": "0000000004258f50e41a9128f5b6db83ef5bed4e491c4814576acda264f5f42f",
                    "height": 69570384
                },
                "blockchainSpecific": {
                    "bandwithUsed": 45,
                    "energyUsed": "276"
                }
            }
        ]
    }
}