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

# Get NFT collection details

> Returns the details of a specific NFT collection by its address.



## OpenAPI

````yaml /api-reference/rollup-indexer/openapi.yaml get /indexer/nft/v1/collections/{collection_addr}
openapi: 3.1.0
info:
  title: Indexer API
  description: >-
    Query indexed data including transactions, blocks, NFTs, and token holders
    across Initia Stack chains.
  version: 1.0.0
servers:
  - url: https://rollytics-api-evm-1.anvil.asia-southeast.initia.xyz
    description: evm-1 (testnet)
  - url: https://rollytics-api-move-1.anvil.asia-southeast.initia.xyz
    description: move-1 (testnet)
  - url: https://rollytics-api-wasm-1.anvil.asia-southeast.initia.xyz
    description: wasm-1 (testnet)
security: []
paths:
  /indexer/nft/v1/collections/{collection_addr}:
    get:
      tags:
        - NFTs
      summary: Get NFT collection details
      description: Returns the details of a specific NFT collection by its address.
      operationId: getNftCollectionDetails
      parameters:
        - name: collection_addr
          in: path
          description: The collection address.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  collection:
                    $ref: '#/components/schemas/NftCollection'
        '404':
          description: NFT collection not found
components:
  schemas:
    NftCollection:
      type: object
      properties:
        object_addr:
          type: string
          description: Collection contract address.
        collection:
          type: object
          description: Collection details.
          properties:
            creator:
              type: string
              description: Creator address.
            name:
              type: string
              description: Collection name.
            origin_name:
              type: string
              description: Original collection name.
            nfts:
              type: object
              description: NFT count metadata.
              properties:
                handle:
                  type: string
                  description: Storage handle.
                length:
                  type: integer
                  description: Total number of NFTs in this collection.
        height:
          type: integer
          description: Block height when the collection was created.
        timestamp:
          type: string
          description: Timestamp in RFC 3339 format.

````