Footprint Analytics · Example Payload

Query Nft Floor Price

Query the top 10 NFT collections on Ethereum by floor price using the Footprint Analytics SQL API.

BlockchainDeFiNFTGameFiToken AnalyticsOn-Chain DataWeb3Crypto

Query Nft Floor Price is an example object payload from Footprint Analytics, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptionrequestresponse

Example Payload

Raw ↑
{
  "name": "NFT Collection Floor Prices",
  "description": "Query the top 10 NFT collections on Ethereum by floor price using the Footprint Analytics SQL API.",
  "request": {
    "method": "POST",
    "url": "https://api.footprint.network/api/v1/query",
    "headers": {
      "X-API-KEY": "YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "query": "SELECT collection_name, floor_price_usd, volume_24h_usd, holder_count, chain FROM nft_collection_daily_stats WHERE chain = 'ethereum' AND date_trunc('day', updated_at) = CAST('2024-01-01' AS datetime) ORDER BY floor_price_usd DESC LIMIT 10"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": [
        {
          "collection_name": "CryptoPunks",
          "floor_price_usd": 98500.00,
          "volume_24h_usd": 1234567.89,
          "holder_count": 3512,
          "chain": "ethereum"
        },
        {
          "collection_name": "Bored Ape Yacht Club",
          "floor_price_usd": 45200.00,
          "volume_24h_usd": 987654.32,
          "holder_count": 6248,
          "chain": "ethereum"
        }
      ],
      "columns": [
        { "name": "collection_name", "type": "varchar" },
        { "name": "floor_price_usd", "type": "double" },
        { "name": "volume_24h_usd", "type": "double" },
        { "name": "holder_count", "type": "bigint" },
        { "name": "chain", "type": "varchar" }
      ],
      "row_count": 2,
      "execution_time_ms": 342
    }
  }
}

Work with this as data

Every example here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for examples

4 MCP tools reach this
  • find_examplesBrowse and filter every example in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This example
curl "https://apis.io/api/v1/examples/query-nft-floor-price"
All examples
curl "https://apis.io/api/v1/examples?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.