Skip to main content

Get all outputs that use a given bech32-encoded address.

GET 

/api/v1/addresses/:address/outputs

Get all outputs that use a given bech32-encoded address. If count equals maxResults, then there might be more outputs available but those were skipped for performance reasons. User should sweep the address to reduce the amount of outputs.

Request

Path Parameters

    address stringrequired

    bech32-encoded address that is referenced by the outputs.

    Example: iota1qrhacyfwlcnzkvzteumekfkrrwks98mpdm37cj4xx3drvmjvnep6xqgyzyx

Query Parameters

    include-spent boolean

    Set to true to also include the known spent outputs for the given address.

    Example: true
    type integer

    Allows to filter the results by output type. Set to value 0 to filter outputs of type SigLockedSingleOutput. Set to value 1 to filter outputs of type SigLockedDustAllowanceOutput.

    Example: 0

Responses

Successful operation.

Schema
    data objectrequired
    addressType integerrequired

    The type of the address. Value 0 denotes a Ed25519 address.

    address stringrequired

    The hex-encoded Ed25519 address.

    maxResults integerrequired

    The number of results it can return at most.

    count integerrequired

    The actual number of found results.

    outputIds string[]required

    The identifiers of the outputs that use a certain address.

    ledgerIndex integerrequired

    The current ledger index for which the request was made.

Loading...