API ReferenceNFT APIGet NFT Market DataGet NFT lowest priceVersion: 2.0Get NFT lowest priceGEThttps://deep-index.moralis.io/api/v2/nft/:address/lowestpriceGet the lowest executed price for an NFT contract for the last x days (only trades paid in ETH).PATH PARAMSaddressstringrequiredThe address of the NFT contractQUERY PARAMSchainstringThe chain to queryeth0x1goerli0x5sepolia0xaa36a7polygon0x89mumbai0x13881bsc0x38bsc testnet0x61avalanche0xa86afantom0xfapalm0x2a15c308dcronos0x19arbitrum0xa4b1daysnumberThe number of days to look back to find the lowest price If not provided 7 days will be the defaultmarketplacestringMarketplace from which to get the trades (only OpenSea is supported at the moment)Responses200 Returns the trade with the lowest priceobjectAPI KEYTry ItNode.jsPythoncURLGoPHPimport Moralis from 'moralis';try { await Moralis.start({ apiKey: "YOUR_API_KEY" }); const response = await Moralis.EvmApi.nft.getNFTLowestPrice({ "chain": "0x1", "marketplace": "opensea", "address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D" }); console.log(response.raw);} catch (e) { console.error(e);}from moralis import evm_apiapi_key = "YOUR_API_KEY"params = { "chain": "eth", "marketplace": "opensea", "address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D"}result = evm_api.nft.get_nft_lowest_price( api_key=api_key, params=params,)print(result)curl --request GET \ --url 'https://deep-index.moralis.io/api/v2/nft/0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D/lowestprice?chain=eth&marketplace=opensea' \ --header 'accept: application/json' \ --header 'X-API-Key: YOUR_API_KEY' package mainimport ( "fmt" "net/http" "io/ioutil")func main() { url := "https://deep-index.moralis.io/api/v2/nft/0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D/lowestprice?chain=eth&marketplace=opensea" 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, _ := ioutil.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/nft/0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D/lowestprice?chain=eth&marketplace=opensea', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 Returns the trade with the lowest price{ "transaction_hash": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e", "token_ids": [ "15" ], "seller_address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e", "buyer_address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e", "marketplace_address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e", "price": "1000000000000000", "block_timestamp": "2021-06-04T16:00:15", "block_number": "13680123", "block_hash": "0x4a7c916ca4a970358b9df90051008f729685ff05e9724a9dddba32630c37cb96"}