/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

NameTypeDescription

network_id*

String

ethereum / matic

asset_contract*

String

The contract address of NFT project

Query Parameters

NameTypeDescription

start_date

String

for example: 2022-06-01

end_date

String

for example: 2022-06-05

Headers

NameTypeDescription

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
}

Last updated