Single Token Insight

This API endpoint returns a JSON object containing metrics about a specific digital asset in a collection.

Object
Output

collectionName

The name of the collection the digital asset belongs to.

collectionTokenId

The token ID of the digital asset within the collection.

metrics

rarity

A list of objects containing information about the rarity of the digital asset, as evaluated by different sources. Each object includes the source of the evaluation, the rarity score, and the rarity rank of the asset within the source's ranking.

floorPrice

The lowest active listing price of the digital assets in the collection.

fairPrice

Estimated current market value for the digital asset. LN appraisal algorithm currently provides price estimates with an average margin of error of 15%.

floorProbSell

An object containing information about the probability of selling the digital asset at the floor price within various time frames. The probabilities estimated based on expected increased exposure for each asset over the relevant time frame, assuming the market remains stable.

  • psellFloor1d: Probability of being sold within 1 day

  • psellFloor7d: Probability of being sold within 7 days

  • psellFloor15d: Probability of being sold within 15 days

  • psellFloor30d: Probability of being sold within 30 days

  • psellFloorFullExpo: Probability of being sold within a long enough period of time for the listing to be exposed to everyone in the market

  • expnumdaystosellFloorPrice: The first day when the probability of being sold exceeds 75% threshold, if it takes more than 30 days or not possible it returns -1

fairProbSell

An object containing information about the probability of selling the digital asset at the estimated fair price within various time frames. The probabilities estimated based on expected increased exposure for each asset over the relevant time frame, assuming the market remains stable.

  • psellFair1d: Probability of being sold within 1 day

  • psellFair7d: Probability of being sold within 7 days

  • psellFair15d: Probability of being sold within 15 days

  • psellFair30d: Probability of being sold within 30 days

  • psellFairFullExpo: Probability of being sold within a long enough period of time for the listing to be exposed to everyone in the market

  • expnumdaystosellFairPrice: The first day when the probability of being sold exceeds 75% threshold, if it takes more than 30 days or not possible it returns -1

ethGasFee

The current Ethereum gas fee (a fee paid to process transactions on the Ethereum network).

ethUsd

The current exchange rate between Ethereum and US dollars.

Single Token Insight API

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

Path Parameters

Name
Type
Description

AuthKey*

String

Api access key

Token ID*

Token ID

Collection ID*

String

Collection ID

{
    "collectionName": "World Of Women",
    "collectionTokenId": "6929",
    "metrics": {
	"rarity": [
		{ 
		"source": "raritytools", 
		"score": 65.67, 
		"rank": 9848 },
		{ 
		"source": "raritysniper", 
		"score": 55.57, 
		"rank": 9848 },
		{ 
		"source": "ln_rarity_score_v1", 
		"score": 127.24, 
		"rank": 9347 }
		],
	"floorPrice": 1.99,
	"fairPrice": 1.9152146834316588,
	"floorProbSell": {
		"psellFloor1d": 0.2928,
		"psellFloor7d": 0.5043,
		"psellFloor15d": 0.5935,
		"psellFloor30d": 0.6941,
		"psellFloorFullExpo": 0.7392,
		"expnumdaystosellFloorPrice": -1
		},
	"fairProbSell": {
		"psellFairPrice1d": 0.2742,
		"psellFairPrice7d": 0.4864,
		"psellFairPrice15d": 0.5756,
		"psellFairPrice30d": 0.6463,
		"psellFloorFullExpo": 0.6992,
		"expnumdaystosellFairPrice": -1
		},
	"ethGasFee": 0.0086,
	"ethUsd": 1219.2320
    }
}