Jump to
Ctrl
+
/

List Confirmed Transactions By Address Kaspa

GET
/addresses-latest/kaspa/{network}/{address}/transactions

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.

Path Parameters

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 "testnet", "sepolia" are test networks.

address string Required

String representation of the address

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.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

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
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
nextStartingAfter string Optional

Defines the id of the next page which the next list should start from.

5ca21f92cf5431000105d1a7
sortingOrder string Optional

Defines what the sorting order is either ascending or descending.

ascending
items array Items (object) Required
blocksHashes array Items (string) Required
fee object Optional

Transaction fee details

amount string Required

Fee amount

0.123
denomination integer Required

Fee denomination

100000000
unit string Required

Fee unit

SOMPI
hash string Required

String representation of the transaction hash

23e520dd6004712e0f81ca37d8da37245cdc6ab47386e4bd369ebe32bd427998
id string Required

String representation of the transaction ID

1c6205c801b61c3d9c46e6e6a28b643ed5fafad27d30c4c482c09b3914085b3e
inputs array Items (object) Required

Transaction inputs

address string Optional

Input address

kaspa:qpamkvhgh0kzx50gwvvp5xs8ktmqutcy3dfs9dc3w7lm9rq0zs76vf959mmrp
outputIndex integer Required

Previous output index

1
transactionId string Required

Previous output transaction ID

1c6205c801b61c3d9c46e6e6a28b643ed5fafad27d30c4c482c09b3914085b3e
value object Required

Input amount details

amount string Required

Amount value

6173541265
denomination integer Required

Amount denomination

100000000
unit string Required

Amount unit

SOMPI
outputs array Items (object) Required

Transaction outputs

address string Required

Output address

kaspa:qpamkvhgh0kzx50gwvvp5xs8ktmqutcy3dfs9dc3w7lm9rq0zs76vf959mmrp
value object Required

Output amount details

amount string Required

Amount value

6173541265
denomination integer Required

Amount denomination

100000000
unit string Required

Amount unit

SOMPI
timestamp integer Required

Timestamp of the transaction

1742196610

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "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
            }
        ]
    }
}