Jump to
Ctrl
+
/

List Confirmed Transactions By Address From Timestamp EVM history

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

This endpoint will list transactions by an attribute address and timestamp. The timestamp is used as a starting point. Default ordering is from old to new and can be changed with optional query parameter sortingOrder. 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, Ethereum Classic.

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 "sepolia" and "mordor" are test networks.

address string Required

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

timestamp integer Required

Numeric representation of the starting timestamp in seconds since Unix epoch.

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 : 10
sortingOrder string Optional

Defines the sorting order of the results. DESCENDING or ASCENDING by timestamp

startingAfter string Optional

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

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

String representation of the fee value

35
unit string Required

String representation of the fee unit.

ETC
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

0xa56e2d02db7d846091d48ef25955240365bc5efe
sender string Required

String representation of the transaction from address

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

String representation of the amount value

25
unit string Required

String representation of the amount unit.

ETC
gasPrice object Required
amount string Required

String representation of the transaction gas price

123456
unit string Required

String representation of the transaction price unit

WEI
minedInBlock object Required
hash string Required

String representation of the block hash

0000000004258f50e41a9128f5b6db83ef5bed4e491c4814576acda264f5f42f
height integer Required

Numeric representation of the block height

69570384

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",
                "fee": {
                    "amount": "35",
                    "unit": "ETC"
                },
                "gasLimit": 210000,
                "gasUsed": 21000,
                "hash": "4259f7eeb8619c7578a2f78b27dd849dba0760db2e0fa61feec0f948a20b6b3c",
                "inputData": "",
                "positionInBlock": 10,
                "recipient": "0xa56e2d02db7d846091d48ef25955240365bc5efe",
                "sender": "0xfad4a236c87880035497043f24ea58d73c3e50de",
                "status": "0x1",
                "timestamp": 1739363524,
                "value": {
                    "amount": "25",
                    "unit": "ETC"
                },
                "gasPrice": {
                    "amount": "123456",
                    "unit": "WEI"
                },
                "minedInBlock": {
                    "hash": "0000000004258f50e41a9128f5b6db83ef5bed4e491c4814576acda264f5f42f",
                    "height": 69570384
                }
            }
        ]
    }
}