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

# MintTo



## OpenAPI

````yaml POST /v1/project-wallet/mint
openapi: 3.0.0
info:
  title: Lootex Plus API - V1
  description: V1 endpoints
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.lootexplus.com
security: []
tags: []
paths:
  /v1/project-wallet/mint:
    post:
      tags:
        - V1
      operationId: MintController_mint
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MintDto'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    MintDto:
      type: object
      properties:
        chainId:
          type: number
          example: 1868
        contractAddress:
          type: string
        recipientAddress:
          type: string
        tokenId:
          type: number
        quantity:
          type: number
          minimum: 1
        metadata:
          type: object
          description: Additional metadata for the mint (optional)
      required:
        - chainId
        - contractAddress
        - recipientAddress
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Secret key for authentication

````