Transaction ID
Get transaction ids from object id
Retrieve Transaction IDs
POST
https://api.bloqifi.com/v0/txid
Headers
Name
Type
Description
Content-Type*
String
application/json
Request Body
Name
Type
Description
objectid*
Array
['123', '321']
{
objectid: '635c2f05d709a3fdc833a786',
txids: ['123', '321'],
createdAt: '2022-10-28T21:07:25.214Z'
}
Take a look at how you might call this method:
fetch('https://api.bloqifi.com/v0/txid', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
objectid: [ '123', '321' ]
})
})
.then(response => response.json())
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
Last updated
Was this helpful?