API ReferencePrice APINFT PricesGet NFT Historical Floor Price by ContractGet NFT Historical Floor Price by ContractGEThttps://deep-index.moralis.io/api/v2.2/nft/:address/floor-price/historicalGet historical floor price for a given contract.PATH PARAMSaddressstringrequiredThe address of the NFT contractQUERY PARAMSchainstringThe chain to queryeth0x1base0x2105intervalstringrequiredThe duration to query1d7d30d60d90d1yallcursorstringThe cursor returned in the previous response (used for getting the next page).Responses200Returns the contract's historical floor price400Bad Request404Not Found429Too Many Requests500Internal Server ErrorAPI KEYTest Live APIcURLNode.jsPythonGoPHPcurl --request GET \ --url 'https://deep-index.moralis.io/api/v2.2/nft/0x524cab2ec69124574082676e6f654a18df49a048/floor-price/historical?chain=eth&interval=1d&cursor=' \ --header 'accept: application/json' \ --header 'X-API-Key: YOUR_API_KEY' // Node.js v18+ has native fetch support// No additional dependencies requiredconst options = { method: 'GET', headers: { accept: 'application/json', 'X-API-Key': 'YOUR_API_KEY' },};fetch('https://deep-index.moralis.io/api/v2.2/nft/0x524cab2ec69124574082676e6f654a18df49a048/floor-price/historical?chain=eth&interval=1d&cursor=', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));# Dependencies to install:# $ python -m pip install requestsimport requestsurl = "https://deep-index.moralis.io/api/v2.2/nft/0x524cab2ec69124574082676e6f654a18df49a048/floor-price/historical?chain=eth&interval=1d&cursor="headers = { "Accept": "application/json", "X-API-Key": "YOUR_API_KEY"}response = requests.request("GET", url, headers=headers)print(response.text)package mainimport ( "fmt" "net/http" "io")func main() { url := "https://deep-index.moralis.io/api/v2.2/nft/0x524cab2ec69124574082676e6f654a18df49a048/floor-price/historical?chain=eth&interval=1d&cursor=" req, _ := http.NewRequest("GET", url, payload) req.Header.Add("Accept", "application/json") req.Header.Add("X-API-Key", "YOUR_API_KEY") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}<?php// Dependencies to install:// $ composer require guzzlehttp/guzzlerequire_once('vendor/autoload.php');$client = new \GuzzleHttp\Client();$response = $client->request('GET', 'https://deep-index.moralis.io/api/v2.2/nft/0x524cab2ec69124574082676e6f654a18df49a048/floor-price/historical?chain=eth&interval=1d&cursor=', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 Returns the contract's historical floor price{ "page": 2, "page_size": 100, "cursor": "", "result": [ { "floor_price": "0.2176", "floor_price_usd": "564.24", "currency": "eth", "marketplace": [ { "name": "blur", "logo": "https://cdn.moralis.io/marketplaces/blur.png" } ], "timestamp": "2024-08-21T15:59:11.000Z" } ]}