Listings (Marketplace)

Listings and Marketplaces

Asset Layer allows apps to create and manage listings in order to create marketplaces. By storing listings on Asset Layer, multiple marketplaces can have access to the same listings. This means your assets could be listed for sale on many marketplaces at once.

By default, new listings will be accessible through the Asset Layer marketplace. For details on how to use the marketplace, check out Marketplace

Listing Data Model

  • listingId: a UUID for the listing

  • nftId: the UUID of the asset being listed

  • price: the price of the listing in USD

  • seller: the user who is selling the asset

  • status: whether the listing is active, inactive, sold, or canceled

  • liveTime: date-time when the listing will become or became active

  • createdAt: date-time when the listing was created

  • updatedAt: date-time when the listing was last updated

Example Listing Data

"listingId": "63343dc02b4c748ef439e4c1",
"nftId": "c79020015297917828a198f310c115f2",
"price": 0.6,
"seller": "gmadd",
"status": "deleted",
"liveTime": 1664368064652,
"createdAt": 1664368064652,
"updatedAt": 1668174745324

Last updated