👇Historical Floor Price

As a dApp developer, leveraging trustworthy price data is critical for your project's success. Obtain floor prices for Ethereum and Polygon NFT collections with our oracle solutions as your backbone.

Get the Historical Floor Price of Collection

GET https://api.metaquants.xyz/v1/floor-price/:collection-address

Path Parameters

NameTypeDescription

collection-address*

String

Asset contract address (lowercase)

Query Parameters

NameTypeDescription

start_date*

String

end_date*

String

Headers

NameTypeDescription

x-api-key*

String

API KEY provided by MetaQuants

{
    "statusCode": 200,
    "body": [{
        "collection_address": "0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb",
        "date": "2022-10-12",
        "floor_price": 5.603330993478296,
        "currency": "eth"
    }, {
        "collection_address": "0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb",
        "date": "2022-10-13",
        "floor_price": 5.616842812399883,
        "currency": "eth"
    }]
}

Example curl request

curl --location --request GET 'https://api.metaquants.xyz/v1/floor-price/0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb?start_date=2022-10-12&end_date=2022-10-13' \
--header 'x-api-key: <YOUR-API-KEY>'

Example curl response

{
    "statusCode": 200,
    "body": [
    {
        "collection_address": "0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb",
        "date": "2022-10-12",
        "floor_price": 5.603330993478296,
        "currency": "eth"
    }, {
        "collection_address": "0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb",
        "date": "2022-10-13",
        "floor_price": 5.616842812399883,
        "currency": "eth"
    }
    ]
}

Last updated