Skip to main content

Returns metadata about an output by its identifier.

GET 

/api/core/v3/outputs/:outputId/metadata

Returns metadata about an output by its identifier.

Request

Path Parameters

    outputId stringrequired

    Identifier of the output encoded in hex. An output is identified by the concatenation of transactionId+outputIndex where outputIndex (u16) needs to be converted to little endian first. Hex-encoded with 0x prefix.

    Example: 0xfa0de75d225cca2799395e5fc340702fc7eac821d2bdd79911126f131ae097a20100

Responses

Successful operation.

Schema
    outputId stringrequired

    The output identifier of requested output. Hex-encoded with 0x prefix.

    blockId stringrequired

    The block identifier that references the output. Hex-encoded with 0x prefix.

    included required
    slot integerrequired

    The slot index in which the output is included.

    transactionId stringrequired

    The identifier of the transaction. Hex-encoded with 0x prefix.

    commitmentId string

    The commitment ID at which the output was included into the ledger.

    spent
    slot integerrequired

    The slot index in which the output is spent.

    transactionId stringrequired

    The transaction ID that spent the output. Hex-encoded with 0x prefix.

    commitmentId string

    The commitment ID that includes the spending of the output.

    latestCommitmentId stringrequired

    The current latest commitment id for which the request was made.

Loading...