Skip to main content

Address transactions

Returns transactions in which the specified address spent or received funds.

Specifically, the transactions where: the address controlled at least one of the transaction inputs and/or receives one of the outputs AND the transaction is phase-2 valid, OR, the address controlled at least one of the collateral inputs and/or receives the collateral return output AND the transaction is phase-2 invalid. Read more.

Path Parameters
    address string required

    Address in bech32 format

Query Parameters
    count any

    The max number of results per page

    order any

    The order in which the results are sorted (by point in chain)

    from int64

    Return only transactions minted on or after a specific slot

    to int64

    Return only transactions minted on or before a specific slot

    cursor string

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

Responses

Get the transactions for an address


Schema
    data object[] required

    Endpoint response data

  • Array [
  • input boolean required

    Address controlled at least one of the consumed UTxOs

    output boolean required

    Address controlled at least one of the produced UTxOs

    slot int64 required

    Absolute slot of the block which contains the transaction

    tx_hash string required

    Transaction hash

  • ]
  • last_updated object required

    Details of the most recent block processed by the indexer (aka chain tip); that is, the data returned is correct as of this block in time.

    block_hash string required

    Hex-encoded hash of the most recently processed block (aka chain tip)

    block_slot int64 required

    Absolute slot of the most recently processed block (aka chain tip)

    timestamp string required

    UTC timestamp of when the most recently processed block was minted

    next_cursor string nullable

    Pagination cursor

Loading...