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

Outputs

PreviousBitcoinNextAddress
๐Ÿ“š
๐Ÿ“ฆ
post

Retrieve Ordinal details for a specific list of outputs (txid:vout).

Authorizations
Body
outputsstring ยท regex[] ยท min: 1 ยท max: 500RequiredExample: ["e79134080a83fe3e0e06ed6990c5a9b63b362313341745707a2bff7d788a1375:0"]
Responses
200
List of ordinal detail outputs
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
post
POST /v1/outputs HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 82

{
  "outputs": [
    "e79134080a83fe3e0e06ed6990c5a9b63b362313341745707a2bff7d788a1375:0"
  ]
}
{
  "total": 1,
  "limit": 1,
  "offset": 1,
  "xVersion": 1,
  "items": [
    {
      "txid": "text",
      "vout": 1,
      "result": {
        "blockHeight": 1,
        "value": 1,
        "satRanges": [
          {
            "range": {
              "start": "text",
              "end": "text"
            },
            "offset": 1,
            "sattributes": [
              "ALPHA",
              "BLOCK78",
              "FIRST_TRANSACTION",
              "PIZZA",
              "VINTAGE",
              "BLACK_UNCOMMON",
              "BLACK_RARE",
              "BLACK_EPIC",
              "BLACK_LEGENDARY",
              "BLOCK9",
              "BLOCK9_450",
              "BLOCK286",
              "JPEG",
              "LEGACY",
              "OMEGA",
              "FIBONACCI",
              "HITMAN",
              "NAKAMOTO",
              "SILK_ROAD",
              "PALINDROME",
              "1D_PALINDROME",
              "2D_PALINDROME",
              "3D_PALINDROME",
              "PALIBLOCK_PALINDROME",
              "PALINCEPTION",
              "PURE_PALINCEPTION",
              "PERFECT_PALINCEPTION",
              "SEQUENCE_PALINDROME",
              "NAME_PALINDROME",
              "COMMON",
              "UNCOMMON",
              "RARE",
              "EPIC",
              "LEGENDARY",
              "MYTHIC"
            ],
            "yearMined": 1,
            "block": 1,
            "inscriptions": [
              {
                "contentType": "text",
                "id": "text"
              }
            ]
          }
        ],
        "runes": [
          {
            "runeName": "text",
            "amount": "text",
            "divisibility": 1,
            "symbol": "text"
          }
        ]
      }
    }
  ]
}