/v3/realtime-floor-price

Get realtime floor price

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

This endpoint allows you to get floor price in realtime.

Path Parameters

NameTypeDescription

network_id*

String

ethereum / matic

asset_contract*

String

The contract address of a NFT project

Headers

NameTypeDescription

x-api-key*

string

API key request via [API key request] link.

{
    "data": {
        "assetContract": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
        "collectionId": "doodles",
        "floorPriceEth": "12.500000000000000000",
        "networkId": "ethereum",
        "openseaSlug": "doodles-official",
        "processedAt": "2022-06-28T05:59:00+00:00"
    },
    "message": "OK",
    "statusCode": 20000
}

curl request example

curl -i -H "x-api-key: YOUR_API_KEY" \
  "https://api.nftbank.ai/v3/realtime-floor-price/ethereum/0x8a90cab2b38dba80c64b7734e58ee1db38b8992e"

curl response example

{
    "data": {
        "assetContract": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
        "collectionId": "doodles",
        "floorPriceEth": "12.500000000000000000",
        "networkId": "ethereum",
        "openseaSlug": "doodles-official",
        "processedAt": "2022-06-28T05:59:00+00:00"
    },
    "message": "OK",
    "statusCode": 20000
}

Last updated