Single Token Listing

This API endpoint returns a JSON object containing information about a specific digital asset listed for sale on a marketplace.

ObjectOutput

collectionName

The name of the collection the digital asset belongs to.

collectionTokenId

The token ID of the digital asset within the collection.

sellerAddress

The Ethereum address of the seller.

price

The price at which the asset is being offered for sale.

currency

The currency in which the price is listed.

marketplaceName

The name of the marketplace on which the asset is being offered for sale.

listingCreateDate

The date the listing for the asset was created.

listingExpireDate

The date the listing for the asset will expire.

If the asset is not currently listed for sale, the seller address, price, currency, marketplace name, listing create date, and listing expire date will be null.

Single Token Listing API

GET https://test-api.lightnift.com/api/external/single-token-listing/world-of-women-nft/6929/

Path Parameters

NameTypeDescription

AuthKey*

String

Api access key

Token ID*

String

Token ID

Collection ID*

String

Collection ID

[
   {
        "collectionName": "World Of Women",
        "collectionTokenId": "6929",
        "sellerAddress": null,
        "price": null,
        "currency": null,
        "marketplaceName": null,
	"listingCreateDate": null,
	"listingExpireDate": null
   }
]