v1

latestOpenAPI 3.0.42026-07-26159287356.1 KB
Onchain

Mint NFT(s)

Mints an NFT to one or more recipients on a specified network and contract, using a configured server wallet. Contact us to set up your wallet configuration if you don't have one.

post/v2/farcaster/nft/mint/

Headers

x-wallet-idstring required

Wallet ID to use for transactions

Request body

asyncboolean

If true, returns immediately after sending the transaction.

contract_addressstring required

Ethereum address

network'base' | 'optimism' | 'base-sepolia' required

Network to mint on.

Example request

{
  "contract_address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
  "network": "base",
  "recipients": [
    {
      "address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
      "quantity": 1
    }
  ]
}

Response

Success

Example response

{
  "transactions": [
    {
      "recipient": {
        "address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
        "fid": 3
      }
    }
  ]
}