Documentation · Endpoints
POST /api/v1/keys
Création de clé API gratuite — 100 req/mois, sans authentification, rate-limit IP.
Requête
Aucun header Authorization requis.
{ "email": "developpeur@entreprise.com" }cURL
curl -X POST https://getauros.com/api/v1/keys \
-H "Content-Type: application/json" \
-d '{"email":"developpeur@entreprise.com"}'Réponse
La clé brute n'est affichée qu'une fois. Stockez-la dans un secret manager (Vercel, AWS, etc.).
{
"ok": true,
"api_key": "auros_pk_live_...",
"tier": "free",
"monthly_limit": 100,
"message": "Store this key securely — it will not be shown again."
}