# Mint NFT

#### HTTP Request Method

```
POST
```

#### HTTP Request URL

```
https://api.helpers.testnet.thxnet.org/rest/v0.5/l1/nft/mint
```

#### HTTP Request Body \<JSON>

> All fileds in `static` is immutable after the NFT gets minted
>
> All fields in `dynamic` is optional

```json
{
  "receiver_id_wallet_address": "<id_wallet_address_suri>",
  "metadata": {
    "static": {
      "issuer": "",
      "contents_provider": "",
      "name": "",
      "description": "",
      "image": "",
      "link": "",
      "serial_number": 1,
      "total_issued": 1000000,
      "animation_url": ""
    },
    "dynamic": { }
  }
}
```

> Please refer to [this link](https://docs.google.com/spreadsheets/d/1y2TTQHOvqhNcPiyFB877_60Nj-PhwQwrNN3Y8CsSiSw/edit?usp=sharing) for metadata details.

#### Auth Method (HTTP Header)

```
Bearer Token

<THXNET_API_TOKEN>
```
