url --request POST \
--url https://dev.underdogprotocol.com/v2/projects \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"transferable": false,
"compressed": true,
"image": "https://upload.wikimedia.org/wikipedia/en/6/63/Feels_good_man.jpg",
"name": "The Good Life",
"symbol": "GLIFE",
"description": "I minted this NFT with the Underdog API"
}
'
curl --request POST \
--url https://dev.underdogprotocol.com/v2/projects/c/8/nfts \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"upsert": false,
"name": "Good Life ",
"description": "the good life",
"image": "https://upload.wikimedia.org/wikipedia/en/6/63/Feels_good_man.jpg"
}
'
curl --request PUT \
--url https://dev.underdogprotocol.com/v2/projects/c/8/nfts/2 \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"image": "https://api.time.com/wp-content/uploads/2016/10/pepe-the-frog-matt-furie-hate-symbol-racism-anti-defamation-league-4chan.jpg"
}
'