Jump to
Ctrl
+
/

Get Transaction Details By Transaction Id Kaspa

GET
/transactions/kaspa/{network}/{transactionId}

Through this endpoint customers can obtain details about a signature by the transaction's unique identifier.

Path Parameters

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software

transactionId string Required

String identifier of the transaction ID

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
blocksHashes array Items (string) Required
fee object Optional

Transaction fee details

amount string Required

Fee amount

0.123
denomination string Required

Fee denomination

100000000
unit string Required

Fee unit

hash string Required

String representation of the transaction hash

76d7502fa19c53f61d6acd83102e4e153d864908eea9e2140a86dc6278b4e1f0
id string Required

String representation of the transaction ID

inputs array Items (object) Required

Transaction inputs

address string Optional

Input address

kaspa:qzyzhlkd8thwywu2ajylmzlz9hxdqw9s5xznf0kzed8s9y4h6mtfj222rtgcn
outputIndex integer Required

Previous output index

3
transactionId string Required

Previous output transaction ID

794af341e2fc00b732a60a4fb5ee238c6289fec30c21bbadf326cc448d2c312e
value object Optional

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:qrk9decfnl4rayeegp6gd3tc6605zavclkpud5jp78axat5namppwt050d57j
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

1741515023

Credits Cost : 1500 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "blocksHashes": [
                "14ffe6a8da878316db9afca55c62746f97033631072b931cae2a0b3458b29fc8"
            ],
            "fee": {
                "amount": "0.123",
                "denomination": "100000000",
                "unit": ""
            },
            "hash": "76d7502fa19c53f61d6acd83102e4e153d864908eea9e2140a86dc6278b4e1f0",
            "id": "",
            "inputs": [
                {
                    "address": "kaspa:qzyzhlkd8thwywu2ajylmzlz9hxdqw9s5xznf0kzed8s9y4h6mtfj222rtgcn",
                    "outputIndex": 3,
                    "transactionId": "794af341e2fc00b732a60a4fb5ee238c6289fec30c21bbadf326cc448d2c312e",
                    "value": {
                        "amount": "6173541265",
                        "denomination": 100000000,
                        "unit": "SOMPI"
                    }
                }
            ],
            "outputs": [
                {
                    "address": "kaspa:qrk9decfnl4rayeegp6gd3tc6605zavclkpud5jp78axat5namppwt050d57j",
                    "value": {
                        "amount": "6173541265",
                        "denomination": 100000000,
                        "unit": "SOMPI"
                    }
                }
            ],
            "timestamp": 1741515023
        }
    }
}