GET
/
v2
/
farcaster
/
nft
/
mint
/
Simulate NFT mint calldata
curl --request GET \
  --url https://api.neynar.com/v2/farcaster/nft/mint/ \
  --header 'x-api-key: <api-key>'
[
  {
    "recipient": {
      "address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
      "fid": 3,
      "quantity": 1
    },
    "function_name": "mintTo",
    "args": [
      "<any>"
    ],
    "to": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
    "data": "0x1234abcd",
    "value": "0",
    "network": "base",
    "calldata": "0xabcdef",
    "abi": "<any>"
  }
]

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Query Parameters

recipients
string
required

JSON array of recipients (same structure as POST).

nft_contract_address
string
required

Ethereum address

Example:

"0x5a927ac639636e534b678e81768ca19e2c6280b7"

network
enum<string>
required

Network to mint on.

Available options:
base,
optimism,
base-sepolia

Response

200
application/json

Success

Calldata simulations for NFT minting.