Mint a Name
Mint a Name
const inputBody = '{
"name": "string",
"signature": "string",
"message": "string",
"createdAt": 0,
"id": "string"
}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json'
};
fetch('https://tna-btc.com/api/tapname',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Parameters
Name
Type
Required
Restrictions
Description
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Last updated