This endpoint will list transactions by an attribute address
. The transactions listed will detail additional information such as hash, time of creation in Unix timestamp, etc.
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 "testnet", "sepolia" are test networks.
String representation of the address
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.
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.
Transaction fee details
Fee amount
Fee denomination
Fee unit
String representation of the transaction hash
String representation of the transaction ID
Transaction inputs
Input address
Previous output index
Previous output transaction ID
Input amount details
Amount value
Amount denomination
Amount unit
Transaction outputs
Output address
Output amount details
Amount value
Amount denomination
Amount unit
Timestamp of the transaction
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"nextStartingAfter": "5ca21f92cf5431000105d1a7",
"sortingOrder": "ascending",
"items": [
{
"blocksHashes": [
"7f9a4f8e0826e6afe73df7d2e28134a6d796caec3bb81de94aa60966a8463533"
],
"fee": {
"amount": "0.123",
"denomination": 100000000,
"unit": "SOMPI"
},
"hash": "23e520dd6004712e0f81ca37d8da37245cdc6ab47386e4bd369ebe32bd427998",
"id": "1c6205c801b61c3d9c46e6e6a28b643ed5fafad27d30c4c482c09b3914085b3e",
"inputs": [
{
"address": "kaspa:qpamkvhgh0kzx50gwvvp5xs8ktmqutcy3dfs9dc3w7lm9rq0zs76vf959mmrp",
"outputIndex": 1,
"transactionId": "1c6205c801b61c3d9c46e6e6a28b643ed5fafad27d30c4c482c09b3914085b3e",
"value": {
"amount": "6173541265",
"denomination": 100000000,
"unit": "SOMPI"
}
}
],
"outputs": [
{
"address": "kaspa:qpamkvhgh0kzx50gwvvp5xs8ktmqutcy3dfs9dc3w7lm9rq0zs76vf959mmrp",
"value": {
"amount": "6173541265",
"denomination": 100000000,
"unit": "SOMPI"
}
}
],
"timestamp": 1742196610
}
]
}
}