Full transactions
Get all transactions for a given address from database. And then get their related full transaction data
Path parameters
kaspaAddressstringRequiredPattern:
Kaspa address as string e.g. kaspatest:qpqz2vxj23kvh0m73ta2jjn2u4cv4tlufqns2eap8mxyyt0rvrxy6ejkful67
^kaspatest:[a-z0-9]{61,63}$
Query parameters
limitinteger · min: 1 · max: 500OptionalDefault:
The number of records to get
50
offsetintegerOptionalDefault:
The offset from which to get records
0
fieldsstringOptionalDefault:
""
resolve_previous_outpointsall ofOptionalDefault:
Use this parameter if you want to fetch the TransactionInput previous outpoint details. Light fetches only the adress and amount. Full fetches the whole TransactionOutput and adds it into each TxInput.
no
string · enumOptionalPossible values:
An enumeration.
Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
GET /addresses/{kaspaAddress}/full-transactions HTTP/1.1
Host: kas.nownodes.io
Accept: */*
[
{
"subnetwork_id": "text",
"transaction_id": "text",
"hash": "text",
"mass": "text",
"payload": "text",
"block_hash": [
"text"
],
"block_time": 1,
"is_accepted": true,
"accepting_block_hash": "text",
"accepting_block_blue_score": 1,
"accepting_block_time": 1,
"inputs": [
{
"transaction_id": "text",
"index": 1,
"previous_outpoint_hash": "text",
"previous_outpoint_index": "text",
"previous_outpoint_resolved": {
"transaction_id": "text",
"index": 1,
"amount": 1,
"script_public_key": "text",
"script_public_key_address": "text",
"script_public_key_type": "text",
"accepting_block_hash": "text"
},
"previous_outpoint_address": "text",
"previous_outpoint_amount": 1,
"signature_script": "text",
"sig_op_count": "text"
}
],
"outputs": [
{
"transaction_id": "text",
"index": 1,
"amount": 1,
"script_public_key": "text",
"script_public_key_address": "text",
"script_public_key_type": "text",
"accepting_block_hash": "text"
}
]
}
]