POST
/
erc721
/
{id}
/
mint
curl --request POST \
  --url https://lab.trustos.telefonicatech.com/track/v2/erc721/{id}/mint \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'body={
  "name": "NFT Token",
  "description": "A token for testing purposes"
}'
{
  "statusCode": 200,
  "message": "Tokens minted successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Token address or symbol.

Example:

"0xabcdef"

Query Parameters

networkId
number
required

Network identifier where the NFT collection contract was deployed.

Example:

10004

to
string
required

Address which will receive the NFT.

Example:

"0xabcdef"

Body

multipart/form-data

Data needed for minting the NFT

The body is of type object.

Response

200
application/json

Successful minting.

The response is of type object.