π Authentication
All API endpoints require authentication using an API key. You can generate your API key from your Ango Hub dashboard under Account β API.
How to Authenticate
Include your API key in the request header:
apikey: YOUR_API_KEY_HEREExample Request
curl -X GET "https://imeritapi.ango.ai/v2/listProjects" \
-H "apikey: your_actual_api_key_here" \
-H "Content-Type: application/json"Security Best Practices
β οΈ Never expose your API key in client-side code or public repositories
π Rotate your API keys regularly (every 90 days recommended)
Last updated