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

# Mint Status

> Get the status and associated information for a mint operation.

**API scope required**: `nfts.read`


<ResponseExample>
  ```json 200 EVM  theme={null}
    {
      "id": "<string>",
      "metadata": {
        "name": "<string>",
        "image": "<string>",
        "description": "<string>"
      },
      "onChain": {
        "status": "success",
        "tokenId": "<string>",
        "owner": "<string>",
        "txId": "<string>",
        "contractAddress": "<string>",
        "chain": "polygon"
      },
      "action": "https://staging.crossmint.com/api/2022-06-09/actions/<actionId>"
    }
  ```

  ```json 200 Solana theme={null}
  {
      "id": "<string>",
      "metadata": {
          "name": "<string>",
          "symbol": "<string>",
          "seller_fee_basis_points": 0,
          "properties": {},
          "description": "<string>",
          "image": "<string>",
          "attributes": []
      },
      "onChain": {
          "status": "success",
          "mintHash": "<string>",
          "txId": "<string>",
          "owner": "<string>",
          "chain": "solana"
      },
      "action": "https://staging.crossmint.com/api/2022-06-09/actions/<actionId>"
  }
  ```

  <Snippet file="mintapi-400-503-responses.mdx" />
</ResponseExample>


## OpenAPI

````yaml get /2022-06-09/collections/{collectionId}/nfts/{id}
openapi: 3.0.1
info:
  description: N/A
  version: 1.0.0
  title: NFT Minting
  contact:
    name: Crossmint NFT Minting APIs
    url: https://www.crossmint.com
    email: support@crossmint.com
servers:
  - url: https://staging.crossmint.com/api
    description: Staging environment (testnets)
  - url: https://www.crossmint.com/api
    description: Production environment (mainnets)
security:
  - apiKey: []
paths:
  /2022-06-09/collections/{collectionId}/nfts/{id}:
    get:
      tags:
        - NFTs
      summary: Mint Status
      description: |
        Get the status and associated information for a mint operation.

        **API scope required**: `nfts.read`
      operationId: mint-status
      parameters:
        - $ref: '#/components/parameters/collectionId'
        - $ref: '#/components/parameters/nftId'
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MintStatusSolana200'
        '400':
          description: >-
            Invalid arguments, please make sure you're following the api
            specification.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/400Response'
        '403':
          description: Forbidden error, please ensure the credentials are correct.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/403Response'
        '404':
          description: Not found error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/404Response'
        '503':
          description: >-
            Please try again in a few minutes. If the issue still persists,
            contact Crossmint support.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/503Response'
components:
  parameters:
    collectionId:
      name: collectionId
      in: path
      description: >
        This is the identifier for the collection related to the request. Every
        project has default collections: `default-solana` and
        `default-polygon`. 


        The
        [create-collection](/api-reference/minting/collection/create-collection)
        API will result in collections with UUID formatted `collectionId`. 

        **Example:** `9c82ef99-617f-497d-9abb-fd355291681b`


        The
        [create-collection-idempotent](/api-reference/minting/collection/create-collection-idempotent)
        API allows you to specify an arbitrary identifier during the initial
        request.

        **Example:** `your-custom-identifier`
      required: true
      example: default-solana
      schema:
        type: string
    nftId:
      name: id
      in: path
      description: Unique ID of the minted NFT returned in the mint response
      required: true
      schema:
        type: string
  schemas:
    MintStatusSolana200:
      allOf:
        - $ref: '#/components/schemas/NFTObjectSolana'
        - type: object
          properties:
            action:
              type: string
              description: URL to API endpoint for requesting status
              example: https://staging.crossmint.com/api/2022-06-09/actions/<actionId>
    400Response:
      type: object
      properties:
        error:
          type: boolean
          example: true
        message:
          type: string
          example: Invalid arguments or empty parameter <missing parameter>.
    403Response:
      type: object
      properties:
        error:
          type: boolean
          example: true
        message:
          type: string
          example: Malformed API key. / API key provided doesn't have required scopes.
    404Response:
      type: object
      properties:
        error:
          type: boolean
          example: true
        message:
          type: string
          example: Not found
    503Response:
      type: object
      properties:
        error:
          type: boolean
          example: true
        message:
          type: string
          example: >-
            Please try again in a few minutes. If the issue still persists,
            contact Crossmint support.
    NFTObjectSolana:
      type: object
      properties:
        id:
          type: string
        metadata:
          type: object
          properties:
            name:
              type: string
            symbol:
              type: string
            seller_fee_basis_points:
              type: integer
              example: 0
            properties:
              type: object
              properties:
                files:
                  type: array
                  items:
                    type: object
                    properties:
                      uri:
                        type: string
                      type:
                        type: string
                category:
                  type: string
                creators:
                  type: array
                  items:
                    type: object
                    properties:
                      address:
                        type: string
                      verified:
                        type: boolean
                      share:
                        type: integer
            description:
              type: string
            image:
              type: string
            attributes:
              type: array
              items:
                type: object
                properties:
                  trait_type:
                    type: string
                  value:
                    type: string
        onChain:
          type: object
          properties:
            status:
              type: string
              example: success
            mintHash:
              type: string
            txId:
              type: string
            owner:
              type: string
            chain:
              type: string
              example: solana
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Obtained in the Crossmint developer console

````