Jump to
Ctrl
+
/

Get Address Statistics EVM

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

Through this endpoint the customer can receive the number of confirmed transactions, token transfers and internal transactions of a given address based on confirmed/synced blocks only. In the case where there are any incoming or outgoing unconfirmed transactions for the specific address, they will not be counted or calculated here.

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.

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
item object Required
address string Required

String representation of the EVM address

0xfad4a236c87880035497043f24ea58d73c3e50de
blockHeight integer Required

Numeric representation of the current block height

123456
blockTimestamp integer Required

Numeric representation of the current block timestamp in seconds since Unix epoch.

1760003893
internalTransactionsCounts object Required

Internal transaction statistics

incoming integer Required

Number of incoming internal transactions

321
outgoing integer Required

Number of outgoing internal transactions

123
nativeTransactionsCounts object Required

Native transaction statistics

incoming integer Required

Number of incoming native transactions

321
outgoing integer Required

Number of outgoing native transactions

123
tokenTransfersCounts object Required

Token transfer statistics

incoming integer Required

Number of incoming token transfers

321
outgoing integer Required

Number of outgoing token transfers

123

Credits Cost : 500 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "address": "0xfad4a236c87880035497043f24ea58d73c3e50de",
            "blockHeight": 123456,
            "blockTimestamp": 1760003893,
            "internalTransactionsCounts": {
                "incoming": 321,
                "outgoing": 123
            },
            "nativeTransactionsCounts": {
                "incoming": 321,
                "outgoing": 123
            },
            "tokenTransfersCounts": {
                "incoming": 321,
                "outgoing": 123
            }
        }
    }
}