/utxos
Gets UTXOs (internal)
token<token>
API key authentication via header (token)
In: header
Query Parameters
addressstring
The address to get the UTXOs for
Length
length <= 150
networkstring
Value in
"Preprod" | "Mainnet"
count?integer
The number of UTXOs to get
Default
10
Range
1 <= value <= 100
page?integer
The page number to get
Default
1
Range
1 <= value <= 100
order?string
The order to get the UTXOs in
Default
"desc"
Value in
"asc" | "desc"
Response Body
curl -X GET "https://loading/./../api/v1/utxos/?address=string&network=Preprod&count=10&page=1&order=asc"
{
"status": "success",
"data": {
"Utxos": [
{
"txHash": "tx_hash",
"address": "addr1qx2ej34k567890",
"Amounts": [
{
"unit": "",
"quantity": 10000000
}
],
"outputIndex": 1,
"block": "1",
"dataHash": "data_hash",
"inlineDatum": "inline_datum",
"referenceScriptHash": "reference_script_hash"
}
]
}
}