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.
Represents the specific blockchain protocol name, e.g. Bitcoin, Bitcoin Cash.
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 network like "testnet" is test network.
Represents the public address, which is a compressed and shortened form of a public key.
Numeric representation of the starting unix timestamp in seconds since epoch
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.
Defines how many items should be returned in the response per page basis.
Defines the sorting order of the results. DESCENDING or ASCENDING by timestamp
Defines the id of the previous listed record id from which the current list should start from.
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.
Defines how many items should be returned in the response per page basis.
Defines the id of the previous listed record id from which the current list should start from.
Defines whether or not there are more elements available after this set.
Defines the id of the next page which the next list should start from.
Defines what the sorting order is either ascending or descending.
String representation of the fee value
String representation of the transaction hash
String representation of the transaction identifier (txid)
Object Array representation of transaction inputs
String representation of the coinbase hex
Numeric representation of the vout
String representation of the votype
String representation of the txid
String representation of the amount
String representation of the unit
Numeric representation of the transaction locktime
Object Array representation of transaction outputs
Boolean representation of is the transaction output spent
String representation of the type
String representation of the amount
String representation of the unit
Numeric representation of the index
Object Array representation of transaction receivers
String representation of the receiver address
String representation of the amount
String representation of the unit
Object Array representation of transaction senders
String array representation of the sender address
String representation of the amount
String representation of the unit
Numeric representation of the transaction size
Numeric representation of the timestamp in seconds since epoch
Numeric representation of the transaction version
String representation of the block hash
Numeric representation of the block height
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"nextStartingAfter": "5ca21f92cf5431000105d1a7",
"sortingOrder": "ascending",
"items": [
{
"fee": {
"amount": "0.00000191",
"unit": "BTC"
},
"hash": "b8483fe0d1f276a3c53b9ce65f60a2963202f7096c3c3e9a2d4ea0cb31ab60de",
"id": "b8483fe0d1f276a3c53b9ce65f60a2963202f7096c3c3e9a2d4ea0cb31ab60de",
"inputs": [
{
"addresses": [
"XpXpivu9BppPn7XSd9JVPSXb2NsdCr1JZ7"
],
"coinbase": "XtotjTJ1nRGkuAH1axUfybBKoJGtFCqMaV",
"outputIndex": 1,
"script": {
"type": "scripthash"
},
"transactionId": "b8483fe0d1ff60a2963202f7096c3c3e9a2d4ea0cb31ab60de276a3c53b9ce65",
"value": {
"amount": "123",
"unit": "BTC"
},
"witnesses": [
"b8483fe0202f7096c3c3e9a2d4ea0cb31ab60ded1f276a3c53b9ce65f60a2963"
]
}
],
"locktime": 1781865,
"outputs": [
{
"addresses": [
"XtotjxUfybBKoJGtFCqMaVTJ1nRGkuAH1a"
],
"isSpent": true,
"script": {
"type": "scripthash"
},
"value": {
"amount": "123",
"unit": "BTC"
}
}
],
"positionInBlock": 10,
"recipients": [
{
"address": "XtotjxUfybBKoJGtFCqMaVTJ1nRGkuAH1a",
"value": {
"amount": "123",
"unit": "BTC"
}
}
],
"senders": [
{
"address": "XpXpivu9BppPn7XSd9JVPSXb2NsdCr1JZ7",
"value": {
"amount": "123",
"unit": "BTC"
}
}
],
"size": 123,
"timestamp": 1739356303,
"version": 2,
"minedInBlock": {
"hash": "0000000000000001ce2cbb18127b56a4e6495fdec1fc81326317193ed6281cb6",
"height": 2221316
}
}
]
}
}