Wallet
Balance Endpoint
Overview
The Balance Endpoint offers comprehensive balance and transaction data for specified wallet addresses. This endpoint is specifically tailored to provide detailed insights into the runes and bitcoin associated with a given address.
Functionality
Address Parameter: Users must specify a wallet address to query its balance and transaction data.
Real-Time Data on Runes: The endpoint focuses on providing detailed information about runes and bitcoin held in the queried wallet.
UTXOs and UTXOsIds: Understanding the difference between
utxos
andutxosIds
is crucial:utxos: This array contains detailed information about each unspent transaction output (UTXO) that has been parsed and is available for the specified wallet address.
utxosIds: Represents all UTXOs associated with the wallet, including those not yet parsed. Initially, new wallet queries may show only
utxosIds
without correspondingutxos
data, indicating that parsing is pending. Subsequent queries will reveal detailed UTXO data as parsing is completed.
Endpoint Details
Parameters:
address
(string, required): The wallet address for which balance and UTXO data is requested.
Response Structure
The response from this endpoint provides a JSON object with the following key details:
address
: The queried wallet address.balance
: The overall balance of the wallet.utxos
: An array of UTXO objects, each containing:Details about its balance and associated collections.
Information on any inscriptions, including their content and metadata.
utxosIds
: An array of UTXO IDs representing all UTXOs associated with the wallet.Each UTXO and collection item contains additional fields such as market price, batch size, verification status, and timestamps.
Last updated