GET
/
api
/
v1
/
developer
/
bitcoin
/
mempool
/
outputs
curl --request GET \
  --url https://api.allium.so/api/v1/developer/bitcoin/mempool/outputs \
  --header 'X-API-KEY: <api-key>'
{
  "items": [
    {
      "script_asm": "<string>",
      "script_hex": "<string>",
      "type": "<string>",
      "address": "<string>",
      "description": "<string>",
      "index": 0,
      "transaction_hash": "<string>",
      "block_hash": "<string>",
      "block_timestamp": "2023-11-07T05:31:56Z",
      "value": "<string>",
      "utxo_id": "<string>",
      "addresses": "<string>",
      "address0": "<string>",
      "value_max_exclusive": "<string>",
      "value_min_inclusive": "<string>",
      "fetched_at": "2023-11-07T05:31:56Z"
    }
  ],
  "size": 2,
  "page": 2
}

Outputs in Bitcoin transactions specify the recipients and the amount of bitcoin being transferred. Each output creates a new unspent transaction output (UTXO), which can be used as an input in future transactions. Any leftover value can be sent to a change address or used for fees, ensuring precise fund allocation.

Authorizations

X-API-KEY
string
header
required

Query Parameters

chain
enum<string>
required
Available options:
abstract,
aleph_zero,
alienx,
apechain,
aptos,
arbitrum,
arbitrum_nova,
arbitrum_sepolia,
astar,
avalanche,
b3,
base,
base_sepolia,
beacon,
beacon_validators,
berachain,
binance,
bitcoin,
blast,
bsc,
celo,
cosmos,
cosmoshub,
ethereum,
stellar,
ethereum_goerli,
fantom,
xrp_ledger,
vana,
dydx,
ethereum_sepolia,
kava,
bitcoin_cash,
celestia,
codex,
litecoin,
mantra,
dymension,
babylon,
ethereum_hoodi,
winr,
sx,
injective,
educhain,
dogecoin,
hyperevm,
hyperliquid,
everclear,
fraxtal,
gnosis,
gravity,
harmony,
hedera,
holesky,
imx_zkevm,
ink,
kinto,
linea,
manta_pacific,
mantle,
metis,
mode,
monad_devnet1,
monad_testnet,
near,
oasys,
optimism,
osmosis,
polygon,
polygon_zkevm,
proof_of_play_apex,
proof_of_play_boss,
provenance,
real,
reya,
ronin,
rootstock,
sanko,
scroll,
scroll_sepolia,
sei,
solana,
soneium,
sonic,
stacks,
starknet,
superposition,
sui,
ton,
tron,
unichain,
worldchain,
zksync,
zora
fetched_at_gte
string
fetched_at_lte
string

Response

200
application/json

Successful Response

The response is of type object.