Jump to
Ctrl
+
/

Get Address Statistics UTXOs

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

Through this endpoint the customer can receive the number of confirmed 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. Applies only for coins.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. Bitcoin, Bitcoin Cash.

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 "testnet" is test network.

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 address

bc1pp7w6kxnj7lzgm29pmuhezwl0vjdlcrthqukll5gn9xuqfq5n673smy4m63
blockHeight integer Required

Numeric representation of the current blockchain block height

123456
blockTimestamp integer Required

Numeric representation of the current blockchain block timestamp

1760003893
transactionCounts object Required
incoming integer Required

Numeric representation of the incoming transaction count for the address

100
outgoing integer Required

Numeric representation of the outgoing transaction count for the address

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": "bc1pp7w6kxnj7lzgm29pmuhezwl0vjdlcrthqukll5gn9xuqfq5n673smy4m63",
            "blockHeight": 123456,
            "blockTimestamp": 1760003893,
            "transactionCounts": {
                "incoming": 100,
                "outgoing": 123
            }
        }
    }
}