> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coingecko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 💼 NFTs List with Market Data

> This endpoint allows you to **query all the supported NFT collections with floor price, market cap, volume and market related data on CoinGecko**

<Tip>
  ### Tips

  * You may include values such as `per_page` and `page` to specify how many results you would like to show in the responses per page and which page of responses you would like to show.
</Tip>

<Note>
  ### Note

  * Cache / Update Frequency: every 5 minutes.
  * Exclusive for Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).
  * CoinGecko equivalent page: [https://www.coingecko.com/en/nft](https://www.coingecko.com/en/nft).
  * Some collections with low liquidity may not be ranked by Market Cap value, learn more [here](https://support.coingecko.com/hc/en-us/articles/37226121227545-What-is-NFT-Market-Cap). Sorting by Mcap ranking will first prioritize Market Cap value of liquid NFT collections, followed by trading volume of illiquid NFT collections.
</Note>


## OpenAPI

````yaml api-reference/coingecko-pro.json get /nfts/markets
openapi: 3.0.0
info:
  title: CoinGecko Pro API
  version: 3.0.0
servers:
  - url: https://pro-api.coingecko.com/api/v3
security:
  - apiKeyAuth: []
  - apiKeyQueryParam: []
paths:
  /nfts/markets:
    get:
      tags:
        - NFTs (Beta)
      summary: 💼 NFTs List with Market Data
      description: >-
        This endpoint allows you to **query all the supported NFT collections
        with floor price, market cap, volume and market related data on
        CoinGecko**
      operationId: nfts-markets
      parameters:
        - name: asset_platform_id
          in: query
          description: |-
            filter result by asset platform (blockchain network) 
             *refers to [`/asset_platforms`](/reference/asset-platforms-list) filter=`nft`
          required: false
          schema:
            type: string
            example: ethereum
            default: ethereum
        - name: order
          in: query
          description: |-
            sort results by field 
             Default: `market_cap_usd_desc`
          required: false
          schema:
            type: string
            enum:
              - h24_volume_native_asc
              - h24_volume_native_desc
              - h24_volume_usd_asc
              - h24_volume_usd_desc
              - market_cap_usd_asc
              - market_cap_usd_desc
        - name: per_page
          in: query
          description: |-
            total results per page 
             Valid values: any integer between 1 and 250 
             Default: `100`
          required: false
          schema:
            type: number
        - name: page
          in: query
          description: |-
            page through results 
             Default: `1`
          required: false
          schema:
            type: number
      responses:
        '200':
          description: List all NFTs markets
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NFTsMarkets'
components:
  schemas:
    NFTsMarkets:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
            description: NFT collection ID
          contract_address:
            type: string
            description: NFT collection contract address
            nullable: true
          asset_platform_id:
            type: string
            description: NFT collection asset platform ID
          name:
            type: string
            description: NFT collection name
          symbol:
            type: string
            description: NFT collection symbol
          image:
            type: object
            description: NFT collection image url
            properties:
              small:
                type: string
              small_2x:
                type: string
          description:
            type: string
            description: NFT collection description
            nullable: true
          native_currency:
            type: string
            description: NFT collection native currency
          native_currency_symbol:
            type: string
            description: NFT collection native currency symbol
          market_cap_rank:
            type: number
            description: coin market cap rank
          floor_price:
            type: object
            description: NFT collection floor price
            properties:
              native_currency:
                type: number
              usd:
                type: number
          market_cap:
            type: object
            description: NFT collection market cap
            properties:
              native_currency:
                type: number
              usd:
                type: number
          volume_24h:
            type: object
            description: NFT collection volume in 24 hours
            properties:
              native_currency:
                type: number
              usd:
                type: number
          floor_price_in_usd_24h_percentage_change:
            type: number
            description: NFT collection floor price in usd 24 hours percentage change
          floor_price_24h_percentage_change:
            type: object
            description: NFT collection floor price 24 hours percentage change
            properties:
              usd:
                type: number
              native_currency:
                type: number
          market_cap_24h_percentage_change:
            type: object
            description: NFT collection market cap 24 hours percentage change
            properties:
              usd:
                type: number
              native_currency:
                type: number
          volume_24h_percentage_change:
            type: object
            description: NFT collection volume in 24 hours percentage change
            properties:
              usd:
                type: number
              native_currency:
                type: number
          number_of_unique_addresses:
            type: number
            description: number of unique address owning the NFTs
            nullable: true
          number_of_unique_addresses_24h_percentage_change:
            type: number
            description: >-
              number of unique address owning the NFTs 24 hours percentage
              change
          volume_in_usd_24h_percentage_change:
            type: number
            description: NFT collection volume in usd 24 hours percentage change
          total_supply:
            type: number
            description: NFT collection total supply
            nullable: true
          one_day_sales:
            type: number
            description: NFT collection one day sales
            nullable: true
          one_day_sales_24h_percentage_change:
            type: number
            description: NFT collection one day sales 24 hours percentage change
          one_day_average_sale_price:
            type: number
            description: NFT collection one day average sale price
            nullable: true
          one_day_average_sale_price_24h_percentage_change:
            type: number
            description: >-
              NFT collection one day average sale price 24 hours percentage
              change
      example:
        - id: pudgy-penguins
          contract_address: '0xBd3531dA5CF5857e7CfAA92426877b022e612cf8'
          asset_platform_id: ethereum
          name: Pudgy Penguins
          symbol: PPG
          image:
            small: >-
              https://coin-images.coingecko.com/nft_contracts/images/38/small/pudgy.jpg?1730778323
            small_2x: >-
              https://coin-images.coingecko.com/nft_contracts/images/38/small_2x/pudgy.jpg?1730778323
          description: >-
            Pudgy Penguins is a collection of 8,888 unique NFTs featuring cute
            cartoon penguins, which are generated from a collection of 150
            different hand-drawn traits...
          native_currency: ethereum
          native_currency_symbol: ETH
          market_cap_rank: 3
          floor_price:
            native_currency: 12.17
            usd: 44360
          market_cap:
            native_currency: 108211
            usd: 394267328
          volume_24h:
            native_currency: 402.37
            usd: 1466028
          floor_price_in_usd_24h_percentage_change: 8.27604
          floor_price_24h_percentage_change:
            usd: 8.27603609555289
            native_currency: 1.6277092654424
          market_cap_24h_percentage_change:
            usd: 8.27603609555281
            native_currency: 1.6277092654424
          volume_24h_percentage_change:
            usd: 32.6876748821441
            native_currency: 24.5404332508984
          number_of_unique_addresses: 4756
          number_of_unique_addresses_24h_percentage_change: 0.10524
          volume_in_usd_24h_percentage_change: 32.68767
          total_supply: 8888
          one_day_sales: 33
          one_day_sales_24h_percentage_change: 22.2222222222222
          one_day_average_sale_price: 12.1929990290909
          one_day_average_sale_price_24h_percentage_change: 1.8967181143714
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-cg-pro-api-key
    apiKeyQueryParam:
      type: apiKey
      in: query
      name: x_cg_pro_api_key

````