Skip to main content

Get NFT Provenance

GET 

/public/NftProvenance

Operation GetNftProvenance returns history of NFT ownership for a particular nft ID.

Request

Query Parameters

    currency string
    nft_id stringrequired
    page uint16

    Possible values: >= 1 and <= 65536

    Default value: 1

    per_page uint16

    Possible values: >= 1 and <= 1000

    Default value: 5

Responses

Response

Schema
    error string[]required
    result objectnullable
    items object[]required
  • Array [
  • amount objectnullable

    For how much (if known)

    fiat objectnullable

    AssetAmount contains asset_id and amount bound in one struct

    amount object required

    An amount, either as a string, and integer, or a decimal value

    oneOf

    string

    asset_alt_name stringrequired

    alt_name is handy when interacting with Kraken API

    asset_name stringrequired

    user friendly asset name for display purpose

    native objectrequired

    AssetAmount contains asset_id and amount bound in one struct

    amount object required

    An amount, either as a string, and integer, or a decimal value

    oneOf

    string

    asset_alt_name stringrequired

    alt_name is handy when interacting with Kraken API

    asset_name stringrequired

    user friendly asset name for display purpose

    blockchain stringrequired

    Possible values: [Ethereum, Solana, Polygon]

    On what blockchain did the event happen

    count uint64required

    How many tokens (for SFTs may be > 1)

    from stringrequired

    Previous owner of the token

    kind stringrequired

    Possible values: [mint, transfer, burn, sale]

    Type of the provenance record.

    nft_id stringrequired

    ID of the NFT that this record relates to.

    to stringrequired

    New owner of the token

    txid stringrequired

    Opaque identifier of the transaction on blockchain (Can be used for blockchain explorer)

    when int64required

    When the transaction happened (seconds since epoch)

  • ]
  • total uint64required
Loading...