Authentication
Get your API Key
Your IG1 AI API key is attached to a contract generated by the IG1 Sales team.
Request your API key hereUsing your API Key
Authenticate every request via HTTP Bearer Authentication:
Authorization: Bearer YOUR_API_KEY
danger
Keep your key secret
- Never expose it in client-side code (browsers, mobile apps).
- Load it from an environment variable or a secrets manager on the server side.
Quick test
curl \
-H "Authorization: Bearer $IG1AI_API_KEY" \
https://api.ig1.ai/v1/models
If you get a JSON list of models, you're all set.