Unconfirmed
get
Fetch unconfirmed transactions for a given address.
Authorizations
Path parameters
addressstring · BitcoinAddress · min: 10RequiredDefault:
bc1q0egjvlcfq77cxd9kvpgppyuxckzvws46e3sxch
Query parameters
limitnumber · min: 1 · max: 10000OptionalDefault:
25
Responses
200
List of unconfirmed txs
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/bitcoin/address/{address}/txs/unconfirmed HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"items": [
{
"txid": "text",
"version": 1,
"locktime": 1,
"vin": [
{
"txid": "text",
"vout": 1,
"prevout": {
"scriptpubkey": "text",
"scriptpubkeyAsm": "text",
"scriptpubkeyType": "text",
"scriptpubkeyAddress": "text",
"value": 1
},
"scriptsig": "text",
"scriptsigAsm": "text",
"witness": [
"text"
],
"isCoinbase": true,
"sequence": 1
}
],
"vout": [
{
"scriptpubkey": "text",
"scriptpubkeyAsm": "text",
"scriptpubkeyType": "text",
"scriptpubkeyAddress": "text",
"value": 1
}
],
"size": 1,
"weight": 1,
"sigops": 1,
"fee": 1,
"status": {
"confirmed": true
}
}
]
}
Last updated