Get your first evaluation result in 5 minutes.
Go to your Tempered instance and sign in with Google or your SSO provider. If your organisation uses Tempered, you may already have an account.
If you're new, you'll be guided through creating an organisation. Just enter your organisation name — you'll get:
curl -X POST https://your-tempered-instance/api/v1/evaluations/ \
-H "Authorization: Bearer prx_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"description": "Deploy updated authentication service to production. Adds WebAuthn support. Tested in staging for 2 weeks.",
"context": {
"environment": "production",
"services_affected": ["auth-service", "api-gateway"],
"rollback_plan": "Revert to v2.1.0 via blue-green switch"
}
}'
You'll get back a 202 Accepted with an evaluation ID:
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "pending",
"submitted_at": "2026-03-07T10:30:00Z"
}
Results are typically ready in 5-30 seconds depending on the profile. You can:
GET /api/v1/evaluations/{id}/The quality of your results depends on the quality of your description. Include:
Too vague: "Update the database"
Good: "Upgrade PostgreSQL from 15 to 16 in production. Major version upgrade. Tested in staging for 2 weeks. Blue-green deployment with instant rollback. 30-minute maintenance window on Sunday 02:00 UTC."