> ## Documentation Index
> Fetch the complete documentation index at: https://test-184b3b57.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Mint Details

> Returns data required to view an NFT to be minted



## OpenAPI

````yaml openapi/onchainkit.yaml get /MintDetails
openapi: 3.0.0
info:
  title: OnchainKit API
  version: 1.0.0
  description: API reference for OnchainKit functionality
servers:
  - url: https://api.base.org/v1
    description: Base API server
security: []
paths:
  /MintDetails:
    get:
      tags:
        - Mint
      summary: Get Mint Details
      description: Returns data required to view an NFT to be minted
      operationId: getMintDetails
      parameters:
        - in: query
          name: contractAddress
          required: true
          schema:
            type: string
          description: The NFT contract address
        - in: query
          name: takerAddress
          required: true
          schema:
            type: string
          description: The address of the NFT recipient
        - in: query
          name: tokenId
          required: true
          schema:
            type: string
          description: The token ID of the NFT to be minted
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMintDetailsResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - Invalid API key
        '404':
          description: Token not found
components:
  schemas:
    GetMintDetailsResponse:
      type: object
      properties:
        name:
          type: string
          description: Name of the NFT to be minted
        description:
          type: string
          description: Description of the NFT to be minted
        image:
          type: string
          description: URL of the NFT image to be minted
        attributes:
          type: array
          items:
            type: object
            properties:
              trait_type:
                type: string
              value:
                type: string

````