Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Get NFT Floor Price by Token

GEThttps://deep-index.moralis.io/api/v2.2/nft/:address/:token_id/floor-price

Get the floor price for a specific NFT, defined by its contract and token ID. Refreshes every 30 minutes.

PATH PARAMS
addressstringrequired
The address of the NFT contract
token_idstringrequired
The token ID of the NFT
QUERY PARAMS
chainstring
The chain to query
Responses
200Returns the token's floor price
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/nft/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d/2441/floor-price?chain=eth' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"token_id": "2441",
"floor_price": "0.2176",
"floor_price_usd": "564.24",
"currency": "eth",
"marketplace": "",
"last_updated": "2024-08-21T15:59:11.000Z"
}