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.
Represents the specific blockchain protocol name, e.g. Ethereum, Ethereum Classic.
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.
Represents the public address, which is a compressed and shortened form of a public key.
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.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId
is generated by Crypto APIs and it's unique for every request.
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.
String representation of the EVM address
Numeric representation of the current block height
Numeric representation of the current block timestamp in seconds since Unix epoch.
Internal transaction statistics
Number of incoming internal transactions
Number of outgoing internal transactions
Native transaction statistics
Number of incoming native transactions
Number of outgoing native transactions
Token transfer statistics
Number of incoming token transfers
Number of outgoing token transfers
API Key
{
"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
}
}
}
}