🔐 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_HERE

Example 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)