3mint
  • ๐Ÿ‘‹Welcome to 3mint
  • ๐Ÿ’ป3mint Platform
    • Introduction
    • Deploy a contract
    • Upload your NFT data
    • Create checkout links
    • Add customers
    • Monitor your links
  • โŒจ๏ธDeveloper Guides
    • Introduction
    • Contracts
      • Contract Architecture
      • End-to-end Example
    • Mint
      • How To
      • End-to-end Example
      • Code Snippets
    • Wallets
      • End-to-end Example
      • Mobile Pass
        • Creating Passes
    • Token Gating
      • End-to-end Example
      • Code Snippets
  • ๐Ÿ“–API Reference
    • Overview
    • Contracts
      • Deploy Contract
      • Get Contract
    • Collectibles
      • Get All Templates
      • Mint Collectible
    • Wallets
      • Create Wallet
      • Get Wallet
    • Customers
      • Create Customer
      • Get Customer
      • Delete Customer
    • Claim Links
      • Create Link
      • Update Link
    • Token Gating
      • Create Gate
  • โ“FAQ
    • Web3 101
    • Platform
Powered by GitBook
On this page
  1. API Reference
  2. Collectibles

Mint Collectible

PreviousGet All TemplatesNextWallets

Last updated 2 years ago

Mint NFTs or tokens from a deployed contract to a web3 wallet

๐Ÿ“–
post
Authorizations
Body
tokenIdnumberRequiredExample: 1
chainstring ยท enumRequiredExample: ethereumPossible values:
networkstring ยท enumRequiredExample: mainnetPossible values:
contractAddressstringRequiredExample: 0x00000000
walletAddressstringRequiredExample: 0x00000000
quantitynumberRequiredExample: 1
linkIdstringOptionalExample: ckjv2q5xj0000yj6q6q9q9q9q
emailstringOptional

Email of recipient

Example: john.doe@gmail.com
Responses
201
The NFT has been successfully minted.
post
POST /v1/nft/mint HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 226

{
  "tokenId": 1,
  "chain": "ethereum",
  "network": "mainnet",
  "contractAddress": "0x00000000",
  "walletAddress": "0x00000000",
  "quantity": 1,
  "linkId": "ckjv2q5xj0000yj6q6q9q9q9q",
  "email": "john.doe@gmail.com",
  "customerMetadata": {
    "name": "text"
  }
}
201

The NFT has been successfully minted.

No content