Chunk
Making an call to the chunk endpoint
Retrieve chunk of blob.
Headers
Name
Type
Description
{
hex: 'ee'
}const rawResponse = await fetch(`https://api.bloqifi.com/v0/chunk/${blockchain}/${txid}`, {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
});
const json = await rawResponse.json();
if (rawResponse.status === 200) {
const op_return = json.hex.toString();
}curl -H "Content-Type: application/json" \
https://api.bloqifi.com/v0/chunk/BLOCKCHAIN/TXIDLast updated