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. Realtime Valuation API

/v3/realtime-estimated-price

Get realtime estimated price & floor price

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

This endpoint allows you to get estimated price and floor price in realtime.

Path Parameters

Name
Type
Description

network_id*

String

ethereum / matic

asset_contract*

String

The contract address of a NFT project

token_id*

String

The token ID of a NFT project

Headers

Name
Type
Description

x-api-key*

string

API key request via [API key request] link.

{
    "data": {
        "assetContract": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
        "collectionId": "doodles",
        "dailyEstimatedPriceEth": "14.886014055200000000",
        "estimatedPriceEth": "13.578077718700000000",
        "floorPriceEth": "12.500000000000000000",
        "networkId": "ethereum",
        "openseaSlug": "doodles-official",
        "processedAt": "2022-06-28T06:04:00+00:00",
        "tokenId": "1"
    },
    "message": "OK",
    "statusCode": 20000
}

curl request example

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

curl response example

{
    "data": {
        "assetContract": "0x8a90cab2b38dba80c64b7734e58ee1db38b8992e",
        "collectionId": "doodles",
        "dailyEstimatedPriceEth": "14.886014055200000000",
        "estimatedPriceEth": "13.578077718700000000",
        "floorPriceEth": "12.500000000000000000",
        "networkId": "ethereum",
        "openseaSlug": "doodles-official",
        "processedAt": "2022-06-28T06:04:00+00:00",
        "tokenId": "1"
    },
    "message": "OK",
    "statusCode": 20000
}
PreviousRealtime Valuation APINext/v3/realtime-floor-price

Last updated 2 years ago

Was this helpful?