LogoLogo
Back to AppHelp Center
  • Getting Started
    • Welcome
  • OrdinalsBot API
    • Overview
    • Libraries
    • Template-App
    • Signet
    • Testnet
    • Fractal
    • Getting Prices
      • Getting Prices (Legacy)
    • Create a Direct Inscription Order
    • Create a Managed Inscription Order
    • Get Order Status
    • Create a Collection
    • Create a Collection Order
    • Create Text Inscription Order
    • Search Inscriptions
    • Check Rare Sats Inventory
    • Referral Scheme
    • Transaction Accelerator
    • Burning Assets
    • Webhooks
    • Order States
    • Order Types
  • Runes
    • Etch
    • Mint
    • Direct Mint
      • 1. Generate Direct Mint PSBT
      • 2. Direct Rune Mint Process PSBT
    • Launchpad
      • Create
      • Mint
      • Get Launchpad
    • Airdrop
  • Token Pay
    • What is TokenPay?
    • API Docs
      • API reference
        • Order
        • Create payment psbt
        • Create burn rune psbt
        • Validate burn rune tx
        • Create burn inscription psbt
        • Utils
          • Checktx
          • Submittx
          • Finalize psbt
        • User
          • Withdrawal
          • Order
            • Rune
          • Account
            • Withdraw
            • Balance
      • Specification
  • Marketplace
    • User Guide: Pre-Inscribed Launchpad API
    • API Docs
    • Editions Launchpad
  • Launchpad API
    • Create Marketplace
    • Create a new Launchpad
    • Retrieve Launch PSBT
    • Confirm Launch
    • Check Allocation
    • Check for Padding Outputs
    • Setup Padding Outputs
    • Create buy offer
    • Confirm buy offer
    • Get Launch Info
  • Sat Scanner API
    • Find Special Ranges
    • Find Special Ranges UTXO
    • Supported Satributes
  • Sat Extractor
    • Extract
  • BRC20 / BRC2.0PROG
    • OPI API
    • Bitcoin Remix
  • SNS API
    • SNS API
  • Mempool API
    • Mempool API
  • TAP PROTOCOL
    • Tap Reader API
  • UTXO
    • Split
  • User Guide
    • Inscribe your first Ordinal
    • Receiving Payments
  • Knowledge Base
    • Ordinals
      • What is an Ordinal?
      • Satoshi Rarity
      • What are BRC-20 Tokens?
      • Image Optimisation
      • Pixel Art
    • Bitcoin
      • Unspent Transaction Output (UTXO)
  • Official Links
    • Twitter
    • Discord
Powered by GitBook
On this page
  1. Sat Scanner API

Find Special Ranges

Find special sats for the given bitcoin address

Find special sats in the given bitcoin adddress

GET https://api.ordinalsbot.com/satscanner/find-special-ranges

Path Parameters

Name
Type
Description

address*

String

The bitcoin address

excludeCommonRanges

Boolean

If set to true the response will contain ONLY the special ranges.

This is useful when you have a popular address with too many common ranges and you are not interested in them or the response is too big.

Headers

Name
Type
Description

x-api-key*

String

API Key

{
    "result": {
        "inscriptions": [
            {
                "output": "5c647ddc974d3f116093995a1cf8ac8ade10ed4f255bb3c4baf6435c5fb073d5:2",
                "inscriptions": [
                    "8ba8e1c2cf89413d94d6423032495c879435b2cde2c9fa1580d7f8dd7949e6a8i0"
                ]
            },
            {
                "output": "e3dd6ed7324c5df96206f91dc43deabc6fc6fdc1692d8f4a91efc5724fddd6b7:2",
                "inscriptions": [
                    "f7664e7e746df85704f71c3f7fbe6bcaa5b8626d82b5268d637a26889d42df22i0"
                ]
            }
        ],
        "ranges": [
            {
                "output": "5c647ddc974d3f116093995a1cf8ac8ade10ed4f255bb3c4baf6435c5fb073d5:2",
                "start": 1183905505897907,
                "end": 1183905505898453,
                "size": 546,
                "offset": 0,
                "rarity": "common"
            },
            {
                "output": "e3dd6ed7324c5df96206f91dc43deabc6fc6fdc1692d8f4a91efc5724fddd6b7:2",
                "start": 305377150438027,
                "end": 305377150442477,
                "size": 4450,
                "offset": 0,
                "rarity": "common"
            }
        ],
        "specialRanges": [
            {
                "start": 229634999999999,
                "output": "f69fc1bea9225b6077af7afd2f2d756b9f173e420c2f7b767435fba9b020b178:0",
                "size": 1,
                "offset": 0,
                "satributes": [ "black" ]
            }
      ]
    }
}
PreviousGet Launch InfoNextFind Special Ranges UTXO

Last updated 1 year ago