POST
/
addresses
/
cred
/
utxos
UTxOs by multiple payment credentials
curl --request POST \
  --url https://mainnet.gomaestro-api.org/v1/addresses/cred/utxos \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '[
  "addr_vkh1wdkle2sprqsuklt34474g6n4ps7k6pv6zwe4644uxmg7xj54y87",
  "addr_shared_vkh1ewj7sycvy5y234m3uhudn5dggqk3djr0jheacr3utna5gcnmwp2"
]'
{
  "data": [
    {
      "tx_hash": "a7e1f137a1d4befa15128286fd08dad67aebe2c11995aa2c04cc48159ccef082",
      "index": 0,
      "slot": 55718892,
      "assets": [
        {
          "unit": "lovelace",
          "amount": 1724100
        },
        {
          "unit": "29760f3fb40b3670144594df635e5bb5d144a1173bff0d96fcad155c43727970746f426173686f2330303037",
          "amount": 1
        }
      ],
      "address": "addr1w896t6qnpsjs32xhw8jl3kw34pqz69kgd72l8hqw83w0k3qahx2sv",
      "datum": {
        "type": "hash",
        "hash": "950c3e20ab32ba38c75cac5b1a7451800e514326a953c64e2dced7b4772ffcbe",
        "bytes": null,
        "json": null
      },
      "reference_script": null,
      "txout_cbor": null
    },
    {
      "tx_hash": "257916e7ae112cf16f27218e41bfa37c018bab922354201b3b38c9a24c35ab33",
      "index": 1,
      "slot": 55718892,
      "assets": [
        {
          "unit": "lovelace",
          "amount": 1444443
        },
        {
          "unit": "f0ff48bbb7bbe9d59a40f1ce90e9e9d0ff5002ec48f232b49ca0fb9a6164616d616e74",
          "amount": 1
        }
      ],
      "address": "addr1g9ekml92qyvzrjmawxkh64r2w5xr6mg9ngfmxh2khsmdrcudevsft64mf887333adamant",
      "datum": null,
      "reference_script": null,
      "txout_cbor": null
    }
  ],
  "last_updated": {
    "timestamp": "2023-10-18 07:30:52",
    "block_hash": "0e1e924710135acfe200ab13d290bd282a67584fd54456f0dcac0aeaa38bb2c2",
    "block_slot": 106047961
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Headers

amounts-as-strings
string | null

Large numbers returned as strings if set to true

Query Parameters

resolve_datums
boolean | null

Try find and include the corresponding datums for datum hashes

with_cbor
boolean | null

Include the CBOR encodings of the transaction outputs in the response

count
integer
default:100

The max number of results per page

Required range: x >= 0
cursor
string | null

Pagination cursor string, use the cursor included in a page of results to fetch the next page

Body

application/json · string[]

The body is of type string[].

Response

200
application/json

Unspent transaction outputs

A paginated response. Pass in the next_cursor in a subsequent request as the cursor query parameter to fetch the next page of results.