Spark Transaction History
This endpoint returns the transaction history for a given Spark address.
get
Get transactions history for a specific Spark address.
Authorizations
Path parameters
addressstringRequired
Spark address e.g. sp...
Query parameters
offsetnumberOptionalDefault:
0
limitnumber · max: 25OptionalDefault:
10
Responses
200
Default Response
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
get
GET /v1/spark/address/{address}/transactions HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"offset": 1,
"limit": 1,
"total": 1,
"items": [
{
"id": "text",
"type": "text",
"direction": "text",
"counterparty": {
"type": "text",
"identifier": "text"
},
"amountSats": 1,
"tokenAmount": 1,
"valueUsd": 1,
"createdAt": "text",
"updatedAt": "text",
"status": "text",
"txid": "text",
"tokenMetadata": {
"tokenIdentifier": "text",
"tokenAddress": "text",
"name": "text",
"ticker": "text",
"decimals": 1,
"issuerPublicKey": "text",
"maxSupply": 1,
"isFreezable": true,
"iconUrl": "text"
},
"multiIoDetails": {
"inputs": [
{
"address": "text",
"pubkey": "text",
"amount": 1
}
],
"outputs": [
{
"address": "text",
"pubkey": "text",
"amount": 1
}
],
"totalInputAmount": 1,
"totalOutputAmount": 1
}
}
]
}
Last updated