mallow docs

Mint

POST
/v2/tx/nft/mint

Builds a Metaplex Core mint, paid for and signed by authority. asset is the address the new asset will occupy.

The kind discriminator selects what is minted:

  • core_asset — a 1/1, optionally placed into collection.
  • core_master_edition_collection — a printable master edition. Omit maxSupply for an open edition; set it to cap the print run.
  • core_collection — a parent collection that other assets can join.

The first Core group operation by a verified creator may be fully rent-subsidised by mallow, in which case the returned transaction already carries mallow's co-signature and the creator pays nothing — sign and broadcast it unchanged rather than rebuilding it.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v2/tx/nft/mint" \  -H "Content-Type: application/json" \  -d '{    "authority": "string",    "asset": "string",    "uri": "string",    "nftMetadata": {      "name": "string",      "sellerFeeBasisPoints": 0    },    "kind": "core_asset"  }'
{  "result": {    "tx": "string"  }}