Market Stats

This API endpoint returns a JSON object containing information about covered marketplaces, collections of digital assets, and the macro metrics of the current NFT market.

ObjectOutput

coveredMarketPlaces

A list of objects representing covered collections of digital assets.

coveredCollections

Ethereum addresses of the collection contracts, collection names, and slugs for the covered collections.

metrics

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

  • _All: All time volume

saleCount

The total number of sales for the covered collections, presented in various time resolutions:

  • _1D: 1 day sale count

  • _7D: 7 days sale count

  • _30D: 30 days sale count

  • _All: All time sale count

fgi

The Fear Greed Index for the overall NFT market. 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-25), fear (25-45), neutral (45-55), greed (55-75), extreme greed (75-100).

Market Stats API

GET https://test-api.lightnift.com/api/external/market-stats/

Path Parameters

NameTypeDescription

AuthKey*

Api access key

[
   {"coveredMarketPlaces": [
		"opensea",
		"x2y2",
		"looksrare",
       		"..."],
    "coveredCollections": [{
		"collectionAddress": "0x3bf2922f4520a8ba0c2efc3d2a1539678dad5e9d",
		"collectionName": "0N1 Force",
		"slug": "0n1-force"
		},
		{
		"collectionAddress": "0xb4d06d46a8285f4ec79fd294f78a881799d8ced9",
		"collectionName": "3Landers",
		"slug": "3landers"
		},
        	"..."
		],
     "metrics": {
		"volume": {
			"_1D": 9304.9403,
			"_7D": 88986.1255,
			"_30D": 415644.4382,
			"_All": 8930084.1688
			},
		"saleCount": {
			"_1D": 1981,
			"_7D": 20533,
			"_30D": 90972,
			"_All": 2203862
			},
		"fgi": 52.2887
		}
     }
]