LogoLogo
  • Xverse API
  • โ–ถ๏ธGet Started
  • ๐Ÿ“šAPI reference
    • Bitcoin
      • ๐Ÿ“ฆOutputs
      • ๐Ÿ“ซAddress
        • UTXO
        • Balance
        • Transactions
          • Unconfirmed
      • ๐Ÿ“Transactions
        • History
    • ๐Ÿ–ผ๏ธOrdinals
      • Address
        • ๐Ÿ“ฆUTXO
        • ๐Ÿ–ผ๏ธInscriptions
        • ๐Ÿ”ณRunes
        • ๐Ÿช™BRC-20
      • โœ๏ธInscription Service
        • Estimate
        • Order
          • Execute
    • ๐Ÿ”ฒRunes
      • Rune balances
      • โ›๏ธMint Rune
        • Estimate
        • Order
          • Execute
      • ๐Ÿš€Etch Rune
        • Estimate
        • Order
          • Execute
      • ๐Ÿ”ฒRune Data
    • ๐Ÿช™BRC-20
      • ๐Ÿช™BRC-20 balances
      • โ›๏ธMint BRC-20
        • Estimate
        • Order
          • Execute
      • ๐Ÿš€Deploy BRC-20
        • Estimate
        • Order
          • Execute
    • ๐Ÿ”„Swaps
      • ๐Ÿช™Get destination tokens
      • ๐ŸงพGet quotes
      • ๐Ÿ”ฒRunes Swaps
        • Place order
        • Execute order
      • ๐Ÿ“ฆUTXO
        • Get utxos
        • Place order
        • Execute order
      • ๐Ÿ”ดStacks Swaps
        • Place order
        • Execute order
      • ๐Ÿ”€Crosschain Swaps
        • Place order
  • Specification
Powered by GitBook
On this page
Export as PDF
  1. API reference
  2. Bitcoin
  3. Address
  4. Transactions

Unconfirmed

PreviousTransactionsNextTransactions
๐Ÿ“š
๐Ÿ“ซ
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
      }
    }
  ]
}