ChainDAQ
  • Welcome to ChainDAQ's API Documentation
  • Overview
  • Compatibility APIs
    • Wallets
    • Inscriptions
    • Collections
    • BRC20
    • Runes
    • Prices
Powered by GitBook
On this page
  1. Compatibility APIs

Wallets

PreviousCompatibility APIsNextInscriptions

Last updated 1 month ago

  • GETGet Wallet Inscriptions
  • GETGet Wallet Historical Balances

Get Wallet Historical Balances

get

Returns historical balances for a given bitcoin wallet address.

Authorizations
Query parameters
addressstringRequired

Bitcoin wallet address

Responses
200
Successful response
application/json
403
Invalid API Key
application/json
429
Rate limit exceeded
application/json
get
GET /v3/x/wallet/balance_history HTTP/1.1
Host: api.ordnull.site
x-api-Key: YOUR_API_KEY
Accept: */*
{
  "data": [
    {
      "txid": "text",
      "block_height": 1,
      "block_time": 1,
      "block_tx_index": 1,
      "balance_change": 1,
      "balance_sats": 1,
      "balance_usd": "text"
    }
  ],
  "block_height": 1
}

Get Wallet Inscriptions

get

Returns inscriptions owned by a bitcoin wallet address

Authorizations
Query parameters
orderstring · enumRequired

Sort order

Possible values:
offsetintegerRequired

Starting offset for pagination

countinteger · min: 20 · max: 2000Required

Number of results to return

addressstringRequired

Bitcoin wallet address

exclude_brc20booleanOptional

Set to true to exclude BRC-20 inscriptions

cursed_onlybooleanOptional

Set to true to return only cursed inscriptions

Responses
200
Successful response
application/json
429
Rate limit exceeded
application/json
get
GET /v3/wallet/inscriptions HTTP/1.1
Host: api.ordnull.site
x-api-Key: YOUR_API_KEY
Accept: */*
{
  "data": [
    {
      "query": "text",
      "result": {
        "inscription_name": "text",
        "inscription_id": "text",
        "inscription_number": 1,
        "metadata": {},
        "wallet": "text",
        "mime_type": "text",
        "media_length": 1,
        "genesis_ts": 1,
        "genesis_height": 1,
        "genesis_fee": 1,
        "output_value": 1,
        "satpoint": "text",
        "last_sale_price": 1,
        "collection_name": "text",
        "collection_slug": "text",
        "last_transfer_block_height": 1,
        "utxo": "text",
        "parent_ids": [
          "text"
        ],
        "genesis_block_hash": "text",
        "content_url": "text",
        "bis_url": "text",
        "render_url": "text",
        "byte_size": 1,
        "is_brc20": true,
        "bitmap_number": 1,
        "delegate": {
          "delegate_id": "text",
          "render_url": "text",
          "mime_type": "text",
          "content_url": "text",
          "bis_url": "text"
        }
      }
    }
  ],
  "block_height": 1
}