Skip to main content

Address transactions

GET /addresses/:address/transactions

Transactions on the address.

Request

Path Parameters

    address string required

    Bech32 address.

    Example: addr1qxqs59lphg8g6qndelq8xwqn60ag3aeyfcp33c2kdp46a09re5df3pzwwmyq946axfcejy5n4x0y99wqpgtp2gd0k09qsgy6pz

Query Parameters

    count integer

    Possible values: >= 1 and <= 100

    Default value: 100

    The number of addresses per page.

    page integer

    Possible values: >= 1 and <= 21474836

    Default value: 1

    The page number for listing the results.

    order string

    Possible values: [asc, desc]

    Default value: asc

    The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.

    from string

    The block number and optionally also index from which (inclusive) to start search for results, concatenated using colon. Has to be lower than or equal to to parameter.

    Example: 8929261
    to string

    The block number and optionally also index where (inclusive) to end the search for results, concatenated using colon. Has to be higher than or equal to from parameter.

    Example: 9999269:10
Responses

Return the address content


Schema
  • Array [
  • tx_hash string required

    Hash of the transaction

    tx_index integer required

    Transaction index within the block

    block_height integer required

    Block height

    block_time integer required

    Block creation time in UNIX time

  • ]
Loading...