Catalog/osint-bitcoin-address

OSINT

Bitcoin address intelligence API

Resolve a Bitcoin address to balance, total received/sent, transaction count, and a confirmed/unconfirmed split via the keyless mempool.space API, normalized to both sats and BTC. The value-add is folding mempool's chain/mempool stat split into one clean balance sheet, and it opens Bitcoin coverage alongside our EVM endpoints. Answers 'balance of this Bitcoin address', 'total received by this BTC address', 'how many transactions for this wallet', 'is there unconfirmed activity on this address'.

Price$0.01per request
MethodPOST
Route/v1/osint/bitcoin-address
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
osintbitcoinbtcaddresswalletbalanceblockchainmempool
API URLhttps://x402.hexl.dev/v1/osint/bitcoin-address
Integration docs
Example request
{
  "address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
}
Example response
{
  "address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
  "balanceSats": 250000000,
  "balanceBtc": 2.5,
  "totalReceivedSats": 350000000,
  "totalReceivedBtc": 3.5,
  "totalSentSats": 100000000,
  "txCount": 6,
  "confirmed": {
    "balanceSats": 200000000,
    "txCount": 5
  },
  "unconfirmed": {
    "balanceSats": 50000000,
    "txCount": 1,
    "hasPending": true
  }
}
Input schema
{
  "type": "object",
  "required": [
    "address"
  ],
  "properties": {
    "address": {
      "type": "string",
      "examples": [
        "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}