---
title: "Get a List of Transaction Inputs and Outputs"
method: GET
path: "/{protocol}/{network}/account/{address}/utxo"
tags: ["Balances & UTXO"]
---

# Get a List of Transaction Inputs and Outputs

`GET /{protocol}/{network}/account/{address}/utxo`

Returns the transaction inputs and outputs following the BTC's UTXO model definition by a user-definied account address.

## Path parameters

- `protocol` string, required
- `network` string, required
- `address` string, required

## Query parameters

- `spent` boolean
- `check_mempool` boolean
- `from` integer
- `to` integer
- `order` 'desc' | 'asc'
- `page_token` string
- `page_size` integer

## Response `200`

Transaction outputs filtered by the given parameters

- TxOutputs — A list of transaction outputs.
  - `total` integer — The number of total items.
  - `data` object[] — A list of output items.
    - `status` string — The status of the given transaction output.
    - `is_spent` boolean — Whether the transaction output was spent or not.
    - `value` integer — The amount of tokens within the given output.
    - `spent` TxOutputResponse, nullable
      - `index` integer — The output index within a given transaction.
      - `tx_id` string — The transaction identifier.
      - `date` integer — The transaction creation unix timestamp.
      - `block_id` string — The hash identifier of the block which the transaction was mined.
      - `block_number` integer — The number of the block which the transaction was mined.
      - `confirmations` integer — The number of confirmations the transaction took in order to be mined.
      - `meta` object — The meta details of the transaction.
        - `addresses` string[] — A list of addresses.
        - `index` integer — The index number.
        - `script` string — The script.
        - `script_type` string — The script type.
    - `mined` TxOutputResponse, nullable
      - `index` integer — The output index within a given transaction.
      - `tx_id` string — The transaction identifier.
      - `date` integer — The transaction creation unix timestamp.
      - `block_id` string — The hash identifier of the block which the transaction was mined.
      - `block_number` integer — The number of the block which the transaction was mined.
      - `confirmations` integer — The number of confirmations the transaction took in order to be mined.
      - `meta` object — The meta details of the transaction.
        - `addresses` string[] — A list of addresses.
        - `index` integer — The index number.
        - `script` string — The script.
        - `script_type` string — The script type.
    - `pending` TxOutputResponse, nullable
      - `index` integer — The output index within a given transaction.
      - `tx_id` string — The transaction identifier.
      - `date` integer — The transaction creation unix timestamp.
      - `block_id` string — The hash identifier of the block which the transaction was mined.
      - `block_number` integer — The number of the block which the transaction was mined.
      - `confirmations` integer — The number of confirmations the transaction took in order to be mined.
      - `meta` object — The meta details of the transaction.
        - `addresses` string[] — A list of addresses.
        - `index` integer — The index number.
        - `script` string — The script.
        - `script_type` string — The script type.
  - `meta` Meta, nullable — The meta details.
    - `paging` Paging — The pagination details.
      - `next_page_token` string — The next page token to use in the following request.

## Other responses

- `400` — Bad request
- `401` — Invalid or expired token
- `404` — Resource not found
- `413` — Too Many Transactions
- `429` — Rate limit exceeded
- `500` — An internal server error happened
- `503` — The resource you are trying to access is currently unavailable

---

[API](https://skmtc.dev/blockdaemon/apis/staking-api.md) · [All operations](https://skmtc.dev/blockdaemon/apis/staking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/blockdaemon/staking-api/revisions/f94e296a08a3/schema)
