Get Block Height
Retrieve the current height of the Bitcoin blockchain
const headers = {
'Accept':'application/json'
};
fetch('/bitcoin/current-height',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Last updated