Skip to main content

Get all outputs that use a given hex-encoded Ed25519 address.

GET 

/api/v1/addresses/ed25519/:address/outputs

Get all outputs that use a given hex-encoded Ed25519 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

    hex-encoded Ed25519 address that is referenced by the outputs.

    Example: efdc112efe262b304bcf379b26c31bad029f616ee3ec4aa6345a366e4c9e43a3

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...