Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find Floor Of Opensea NFT

Is there a way to get the floor price thats displayed on the main page of an NFT collection?

enter image description here

Here you see the floor price is 5.75 but if I query the contract using the Opensea api:

url = "https://api.opensea.io/api/v1/asset/0x1cb1a5e65610aeff2551a50f76a87a7d3fb649c6/1/"

response = requests.request("GET", url)

print(response.text)

I get a floor of:

enter image description here

So it seems as though the api is a little off. Was just curious if anyone here knows of a better way to get a more accurate floor price?

like image 981
wjvukasovic Avatar asked Oct 31 '25 22:10

wjvukasovic


1 Answers

I have no idea why this works, but...

https://api.opensea.io/collection/${slug}

slug = the collection slug (name in URL).

For reference, I found this in some random other library's documentation... But it seems to work

like image 148
Roxkstar74 Avatar answered Nov 04 '25 01:11

Roxkstar74