Collection Stats

This API endpoint returns a JSON object containing fundamental statistics and insights about a specific collection of digital assets.

Object
Output

collectionName

The name of the collection.

category

A list of categories the collection belongs to.

metrics

fgi

The Fear Greed Index of the individual collection. FGI is a macro index that aggregates price, demand, and social metrics to summarize the overall sentiment. FGI varies between 0–100, which is categorized at 5 levels: extreme fear (0-24), fear (25-44), neutral (45-54), greed (55-74), extreme greed (75-100).

riskIndex

The Risk Index is an aggregated trading performance score indicates the volatility of daily returns obtained from trading assets in the collection.

opportunityIndex

The Opportunity Index is an aggregated score indicates the opportunity level of the collection by considering the assets listed below their estimated fair price.

marketCap

The market capitalization (total estimated fair value) of the assets in the collection.

saleCount

The total number of sales of the collection, presented in various time resolutions:

  • _1D: 1 day sales count

  • _7D: 7 days sales count

  • _30D: 30 days sales count

volume

The total market volume for the covered collections, presented in various time resolutions:

  • _1D: 1 day volume

  • _7D: 7 days volume

  • _30D: 30 days volume

volatility

Fundamental volatility metrics of the collection floor price:

  • floorVolatility1d: 1-day standard deviation / average floor price

  • floorVolatility7d: 7-day standard deviation / average floor price

  • avgFloorChg1d: 1-day average floor change percentage

  • avgFloorChg7d: 7-day average floor change percentage

floorPrice

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

royaltyFee

The fee ratio paid to the creator of the assets in the collection for each sale.

Market Stats API

GET https://test-api.lightnift.com/api/external/collection-stats/world-of-women-nft/6929/

Path Parameters

Name
Type
Description

AuthKey*

String

Api access key

Collection ID*

String

Collection ID

[
    {
	"collectionName": "World Of Women",
	"collectionTokenId": "6929",
	"category": ["PFP"],
	"metrics": {
	        "fgi": 51.8794,
		"riskIndex": 75.2913,
		"opportunityIndex": 1.275,
		"marketCap": 20620.3237,
		"saleCount": { "_1D": 9, "_7D": 105, "_30D": 452 },
		"volume": { "_1D": 17.3677, "_7D": 203.1427, "_30D": 887.4192 },
		"floorPrice": 1.99,
		"royaltyFee": 0.04
		}
     }
]