πAPI Authentication
API Authentication
Header Format
x-helium-api-key: your_api_key_hereExample
curl -X GET {api_base_url}/api/v1/tags/{id}" -H "x-helium-api-key: your_api_key_here"fetch(api_base_url+'/api/v1/tags/{id}', {
method: 'GET',
headers: {
'x-helium-api-key': 'your_api_key_here'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));Adding the Header in Postman
Last updated