### API Environments Source: https://docs.insightiq.ai/docs/api-reference/api/ref Overview of the available API environments for development and production usage. ```APIDOC ## API Environments ### Description The API is available in three distinct environments for testing and production deployment. ### Environments - **Sandbox**: https://api.sandbox.insightiq.ai (Mock data for testing) - **Staging**: https://api.staging.insightiq.ai (Internal testing and development) - **Production**: https://api.insightiq.ai (Live production data) ### Security Note APIs must be called only from your server-side environment to prevent security vulnerabilities. ``` -------------------------------- ### Authenticate with Basic Auth Header Source: https://docs.insightiq.ai/docs/api-reference/api/ref Demonstrates how to authenticate API requests using the HTTP Authorization header. The header requires the 'Basic' prefix followed by a base64-encoded string of 'username:password'. ```HTTP Authorization: Basic ZGVtbzpwQDU1dzByZA== ``` -------------------------------- ### API Authentication Source: https://docs.insightiq.ai/docs/api-reference/api/ref Details on how to authenticate requests using the Basic Authentication scheme. ```APIDOC ## Authentication ### Description The InsightIQ API uses Basic Authentication. Include an Authorization header with your requests. ### Method N/A ### Endpoint All endpoints ### Parameters #### Headers - **Authorization** (string) - Required - The string "Basic " followed by a base64-encoded "username:password" string. ### Request Example Authorization: Basic ZGVtbzpwQDU1dzByZA== ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.