ποΈCalling APIs on Blockflow
https://api.blockflow.network/api/<apiId>
https://api.blockflow.network/api/<apiSlug>?projectId=<projectId>https://api.blockflow.network/api/123https://api.blockflow.network/api/test?projectId=456fetch('https://api.blockflow.network/api/123', {
method: 'GET',
headers: {
'x-api-key': '<your-api-key>',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => {
// Handle the API response data
console.log(data);
})
.catch(error => {
// Handle any errors that occurred during the API call
console.error('Error:', error);
});