> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gomaestro.org/llms.txt
> Use this file to discover all available pages before exploring further.

> Get all unspent transaction outputs (UTXOs) for a specific Bitcoin address with values and confirmations.

# Address UTXOs



## OpenAPI

````yaml bitcoin/esplora-api/openapi.json get /address/{address}/utxo
openapi: 3.0.3
info:
  title: Bitcoin - Esplora API
  version: 1.0.0
  description: >
    OpenAPI spec for core Esplora endpoints: blocks, transactions, addresses,
    mempool, fees, UTXO data and more.
servers:
  - url: https://xbt-mainnet.gomaestro-api.org/v0/esplora
  - url: https://xbt-testnet.gomaestro-api.org/v0/esplora
security:
  - api-key: []
paths:
  /address/{address}/utxo:
    get:
      tags:
        - Addresses
      summary: Address UTXOs
      description: >-
        Get the list of unspent transaction outputs associated with the
        address/scripthash. Available fields: txid, vout, value, and status
        (with the status of the funding tx).
      parameters:
        - name: address
          in: path
          required: true
          schema:
            type: string
            example: bc1qcx7ys0ahvtfqcc63sfn6axls0qrhkadnslpd94
          description: The Bitcoin address to query.
      responses:
        '200':
          description: A list of UTXOs for the address.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Utxo'
        '400':
          description: Invalid address
        '404':
          description: Address not found
components:
  schemas:
    Utxo:
      type: object
      properties:
        txid:
          type: string
          description: Transaction ID where the UTXO originates.
        vout:
          type: integer
          description: Index of the output in the transaction.
        value:
          type: integer
          description: Value of the UTXO in satoshis.
        status:
          type: object
          properties:
            confirmed:
              type: boolean
            block_height:
              type: integer
            block_hash:
              type: string
            block_time:
              type: integer
          required:
            - confirmed
      required:
        - txid
        - vout
        - value
        - status
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: Project API Key

````