View an item

An item is represtented by an NFT on the blockchain and IPFS.

Each item has a unique ID which can be used to query for the item. Here is an example of the GraphQl request.

query ($id: Int!) {
  itemById(id: $id) {
    id
    obfuscatedId
    quantity
    tokenUri
    timeCreated
    timeModified
    approver
    productId
    externalUrl
    stolen
    notes
    owned
    owner
    forSale
    deleted
    metadata
    earmarks
  }
}

Here is an example curl request.

If the request is successful the response will look something like this.

Last updated