NFTBank.ai
  • Introduction
  • Featured Partners
  • Disclaimer
  • [Premium] Valuation API
    • Historical Valuation API
      • /v3/estimated-price
      • /v3/floor-price
    • Realtime Valuation API
      • /v3/realtime-estimated-price
      • /v3/realtime-floor-price
  • NFTBank Price Estimate API
    • Estimated Price Endpoints
      • /dapp/list
      • /dapp/:dapp_id
      • /estimates/:asset_contract/:token_id
      • /estimates/bulk
    • Supported Collections
    • Price Estimate Performance
  • NFTBank Floor Price API
    • Floor Price Endpoints
      • /floor_price/dapp/list
      • /floor_price/dapp/:asset_contract
      • /floor_price/:asset_contract
      • /floor_price/:asset_contract/bulk
      • /floor_price/:asset_contract/:token_id
      • /floor_price/:asset_contract/:token_id/bulk
    • Supported Collections
  • Asset API
    • Asset API Endpoints
      • /asset/:asset_contract/:token_id
      • /asset-events/:asset_contract/:token_id
      • /collections/:asset_contract
  • User Inventory API
    • User Inventory API Endpoints
      • /user-inventory/:chain_id/:address
  • Market Status API
    • Market Status API Endpoints
      • /market-status/:network_id/:asset_contract
  • Additional Resources
    • Request for API key
    • Request for new APIs
    • Attribution & Usage Policy
    • Join Our Discord
Powered by GitBook
On this page

Was this helpful?

  1. [Premium] Valuation API
  2. Historical Valuation API

/v3/floor-price

Get historical daily floor price

GET https://api.nftbank.ai/v3/floor-price/:network_id/:asset_contract

This endpoint allows you to get daily historical floor prices.

Path Parameters

Name
Type
Description

network_id*

String

ethereum / matic

asset_contract*

String

The contract address of NFT project

Query Parameters

Name
Type
Description

start_date

String

for example: 2022-06-01

end_date

String

for example: 2022-06-05

Headers

Name
Type
Description

x-api-key*

string

API key request via [API key request] link.

{
    "data": [
        {
            "floorPriceEth": "94.989999999999994884",
            "processedAt": "2022-06-01T00:00:00+00:00"
        },
        {
            "floorPriceEth": "92.599999999999994316",
            "processedAt": "2022-06-02T00:00:00+00:00"
        },
        {
            "floorPriceEth": "94.689999999999997726",
            "processedAt": "2022-06-03T00:00:00+00:00"
        },
        {
            "floorPriceEth": "94.689999999999997726",
            "processedAt": "2022-06-04T00:00:00+00:00"
        },
        {
            "floorPriceEth": "96.000000000000000000",
            "processedAt": "2022-06-05T00:00:00+00:00"
        }
    ],
    "message": "OK",
    "statusCode": 20000
}

curl request example

curl -i -H "x-api-key: YOUR_API_KEY" \
  "https://api.nftbank.ai/v3/floor-price/ethereum/0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D?start_date=2022-06-01&end_date=2022-06-05"

curl response example

{
    "data": [
        {
            "floorPriceEth": "94.989999999999994884",
            "processedAt": "2022-06-01T00:00:00+00:00"
        },
        {
            "floorPriceEth": "92.599999999999994316",
            "processedAt": "2022-06-02T00:00:00+00:00"
        },
        {
            "floorPriceEth": "94.689999999999997726",
            "processedAt": "2022-06-03T00:00:00+00:00"
        },
        {
            "floorPriceEth": "94.689999999999997726",
            "processedAt": "2022-06-04T00:00:00+00:00"
        },
        {
            "floorPriceEth": "96.000000000000000000",
            "processedAt": "2022-06-05T00:00:00+00:00"
        }
    ],
    "message": "OK",
    "statusCode": 20000
}
Previous/v3/estimated-priceNextRealtime Valuation API

Last updated 2 years ago

Was this helpful?