👇Realtime 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 Current Floor Price of Collection

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

Path Parameters

Headers

{
    "statusCode": 200,
    "body": {
        "collection_address": "0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb",
        "floor_price": 5.736804373263503,
        "currency": "eth",
        "updated_at_utc": "2022-11-20 08:00:00+00:00"
    }
}

Example curl request

curl --location --request GET 'https://api.metaquants.xyz/v1/realtime-floor-price/0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb' \
--header 'x-api-key: <YOUR-API-KEY>'

Example curl response

{
    "statusCode": 200,
    "body": {
        "collection_address": "0xa3aee8bce55beea1951ef834b99f3ac60d1abeeb",
        "floor_price": 5.736804373263503,
        "currency": "eth",
        "updated_at_utc": "2022-11-20 08:00:00+00:00"
    }
}

Last updated