Utxos

Get the UTXOs of an address

GEThttps://alephium.nownodes.io/addresses/{address}/utxos
Path parameters
address*string (address)
Response

Ok

Body
utxos*array of UTXO
Request
const response = await fetch('https://alephium.nownodes.io/addresses/{address}/utxos', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "utxos": [
    {
      "ref": {
        "hint": 0,
        "key": "text"
      },
      "amount": "text",
      "tokens": [
        {
          "id": "text",
          "amount": "text"
        }
      ],
      "lockTime": 0,
      "additionalData": "text"
    }
  ]
}