Ownership Data Model

Ownership is a relation between NFT (Item) and a wallet (who owns the NFT)

You can find more information about the data model in the response section of respective API endpoint here.

FieldTypeDescription
idstringOwnership Id in format: '${blockchain}:${itemId}:${owner}'
blockchainenumETHEREUM, POLYGON, FLOW etc
itemIdstringItem (NFT) id in format: '${blockchain}:${itemId}'
contractstringcontract id in format: '${blockchain}:${address}'
collectionstringcollection id in format: '${blockchain}:${collectionId}'
tokenIdstringtoken id if applicable (not all blockchains have token id)
ownerunion addresswallet address in Union format: '${blockchain}:${address}'
valuestring (BigInteger)amount of items owned by the owner
lazyValuestring (BigInteger)amount of lazy items owned (creator owns lazy-minted items before they are sold)
createdAtstring
(date-time)
Date and time of ownership created (when owner started to own this NFT)
lastUpdatedAtstring
(date-time)
Date and time when Ownership was changed
bestSellOrderobject (Order)Cheapest listing Order
bestBidOrderobject (Order)Highest (most expensive) Bid for the NFT

* Fields marked with bold are required