GlobalBoost

DEVELOPER API

Build on GlobalBoost.

Simple JSON endpoints served by the live explorer at xplorer.globalboo.st — no authentication for read-only requests.

GETTING STARTED

Query the chain

All amounts are returned in satoshis (1 BSTY = 100,000,000 satoshis) unless noted. The secondary mirror at explorer.globalboo.st serves the same endpoints.

curl https://xplorer.globalboo.st/ext/summary
GET/ext/summary

Live network snapshot: block height, difficulty, circulating supply, hashrate (KH/s), connected peers, and last known price.

curl https://xplorer.globalboo.st/ext/summary
GET/api/getblock?hash=:hash

Full block record by hash: height, confirmations, version, merkleroot, nonce, bits, difficulty, size, previous block hash, and the list of transaction ids.

curl "https://xplorer.globalboo.st/api/getblock?hash=0b4965062f4f4a1cd4a7fb428d65cf483fbdaa8c199af48866a6e46a53bf6da5"
GET/ext/gettx/:txid

Transaction details: vin and vout address lists with satoshi amounts, total moved, timestamp, block index, block hash, and confirmation count.

curl https://xplorer.globalboo.st/ext/gettx/8cb0015f373f17fdfbfb9b938ce150cd5cd3d30bc3ad036053c700bb64bae10d
GET/ext/getaddress/:address

Wallet overview: current balance, total sent, total received (BSTY), and the most recent transaction hashes touching the address.

curl https://xplorer.globalboo.st/ext/getaddress/gb1qyk4lf3dzd6cpl3rvpcdr9057zzfupm0vqnq7ph
GET/ext/getbalance/:address

Returns just the current confirmed balance for a wallet as a plain JSON number.

curl https://xplorer.globalboo.st/ext/getbalance/gb1qyk4lf3dzd6cpl3rvpcdr9057zzfupm0vqnq7ph
GET/ext/getlasttxsajax/0/:count

Latest confirmed transactions feed: each row is [block height, block hash, txid, recipients, satoshis, timestamp].

curl https://xplorer.globalboo.st/ext/getlasttxsajax/0/50
Response format

All successful responses use UTF-8 JSON. Some maintenance endpoints are restricted by the explorer operator and return a plain-text notice instead.