Search

Read-only endpoints to search for accounts, blocks, smart contracts, and transactions

Search

get

Search blocks, transactions, contracts, or accounts by hash/ID

Authorizations
Path parameters
idstringRequired

The hex hash string for a block or transaction, account address, or contract address

Example: 0xcf8b233f19f6c07d2dc1963302d2436efd36e9afac127bf6582824a13961c06d
Query parameters
include_metadatabooleanOptional

This includes the detailed data for purticular hash in the response

Default: false
Responses
200
Default Response
application/json
get
GET /extended/v1/search/{id} HTTP/1.1
Host: stacks.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "found": true,
  "result": {
    "entity_id": "text",
    "entity_type": "standard_address",
    "metadata": {
      "balance": "text",
      "estimated_balance": "text",
      "pending_balance_inbound": "text",
      "pending_balance_outbound": "text",
      "total_sent": "text",
      "total_received": "text",
      "total_fees_sent": "text",
      "total_miner_rewards_received": "text",
      "lock_tx_id": "text",
      "locked": "text",
      "lock_height": 1,
      "burnchain_lock_height": 1,
      "burnchain_unlock_height": 1,
      "token_offering_locked": {
        "total_locked": "text",
        "total_unlocked": "text",
        "unlock_schedule": [
          {
            "amount": "text",
            "block_height": 1
          }
        ]
      }
    }
  }
}