Authentication
How to authenticate API requests
All API requests require authentication. You can obtain your credentials from the ISOview Portal. Note that subscriptions are per-ISO and requests to an ISO for which you do not have a subscription will generate an HTTP 403 error.
Authentication methods
Requests can be authenticated with either a query parameter or an HTTP header.
Query Parameter api_key
Pass your API key as an ordinary query parameter:
cURL
Python
HTTP Header X-API-Key
Alternatively, you can pass the API key as an HTTP header:
cURL
Python
Keep your API key secret. Do not commit them to version control or expose them in client-side code.
