> ## 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 Collection Tickers by ID

> This endpoint allows you to **query the latest floor price and 24hr volume of an NFT collection, on each NFT marketplace, e.g. OpenSea and LooksRare**

<Note>
  ### Note

  * Cache / Update Frequency: every 30 seconds.
  * Exclusive for Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise).
</Note>


## OpenAPI

````yaml api-reference/coingecko-pro.json get /nfts/{id}/tickers
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/{id}/tickers:
    get:
      tags:
        - NFTs (Beta)
      summary: 💼 NFTs Collection Tickers by ID
      description: >-
        This endpoint allows you to **query the latest floor price and 24hr
        volume of a NFT collection, on each NFT marketplace, e.g. OpenSea and
        LooksRare**
      operationId: nfts-id-tickers
      parameters:
        - name: id
          in: path
          description: |-
            NFTs ID 
             *refers to [`/nfts/list`](/reference/nfts-list).
          required: true
          schema:
            type: string
            example: pudgy-penguins
            default: pudgy-penguins
      responses:
        '200':
          description: Get NFTs tickers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NFTTickers'
components:
  schemas:
    NFTTickers:
      type: object
      properties:
        tickers:
          type: array
          items:
            type: object
            properties:
              floor_price_in_native_currency:
                type: number
                description: NFT collection floor price in native currency
              h24_volume_in_native_currency:
                type: number
                description: NFT collection volume in 24 hours in native currency
              native_currency:
                type: string
                description: NFT collection native currency
              native_currency_symbol:
                type: string
                description: NFT collection native currency symbol
              updated_at:
                type: string
                description: last updated time
              nft_marketplace_id:
                type: string
                description: NFT marketplace ID
              name:
                type: string
                description: NFT marketplace name
              image:
                type: string
                description: NFT marketplace image url
              nft_collection_url:
                type: string
                description: NFT collection url in the NFT marketplace
      example:
        tickers:
          - floor_price_in_native_currency: 44.21
            h24_volume_in_native_currency: 0
            native_currency: ethereum
            native_currency_symbol: ETH
            updated_at: '2024-04-08T15:36:00.225Z'
            nft_marketplace_id: looksrare
            name: LooksRare
            image: >-
              https://assets.coingecko.com/nft_marketplaces/images/2/small/Looksrare.jpg?1686193414
            nft_collection_url: >-
              https://looksrare.org/collections/0xBd3531dA5CF5857e7CfAA92426877b022e612cf8?ref=9247712
          - floor_price_in_native_currency: 12.17
            h24_volume_in_native_currency: 402.37
            native_currency: ethereum
            native_currency_symbol: ETH
            updated_at: '2024-04-08T12:28:11.797Z'
            nft_marketplace_id: blur
            name: Blur
            image: >-
              https://assets.coingecko.com/nft_marketplaces/images/20/small/blur_logo.jpg?1690993708
            nft_collection_url: https://blur.io/collection/pudgypenguins
          - floor_price_in_native_currency: 12.84
            h24_volume_in_native_currency: 0
            native_currency: ethereum
            native_currency_symbol: ETH
            updated_at: '2024-04-08T12:28:11.897Z'
            nft_marketplace_id: opensea
            name: OpenSea
            image: >-
              https://assets.coingecko.com/nft_marketplaces/images/1/small/Opensea.png?1686193426
            nft_collection_url: https://opensea.io/collection/pudgypenguins
          - floor_price_in_native_currency: 199
            h24_volume_in_native_currency: 0
            native_currency: ethereum
            native_currency_symbol: ETH
            updated_at: '2024-04-08T12:28:11.979Z'
            nft_marketplace_id: x2y2
            name: X2Y2
            image: >-
              https://assets.coingecko.com/nft_marketplaces/images/21/small/Logo.png?1693192556
            nft_collection_url: >-
              https://x2y2.io/collection/0xBd3531dA5CF5857e7CfAA92426877b022e612cf8
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-cg-pro-api-key
    apiKeyQueryParam:
      type: apiKey
      in: query
      name: x_cg_pro_api_key

````