API Authentication
API Authentication
To authenticate your API requests, you need to include a header called x-helium-api-key
in every API call.
Header Format
Example
Below is an example of how to include the x-helium-api-key
header in a request using different tools and languages.
cURL
JavaScript (Fetch API)
Python (Requests)
Adding the Header in Postman
Open Postman and select your request.
Go to the "Headers" tab.
Add a new header with the key
x-helium-api-key
and set the value toyour_api_key_here
.
By including the x-helium-api-key
header in every request, you ensure that your API calls are authenticated and authorized to access the resources.
Last updated