Quick Start

Get your first evaluation result in 5 minutes.

1. Sign In

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.

2. Create Your Organisation

If you're new, you'll be guided through creating an organisation. Just enter your organisation name — you'll get:

3. Submit Your First Evaluation

Via the Web Dashboard

  1. Click New Evaluation from the evaluations page
  2. Describe your decision in the description field — be specific about what you're changing, why, and what's affected
  3. Optionally select a profile (Standard is a good starting point)
  4. Click Submit Evaluation

Via the API

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"
}

4. Review the Results

Results are typically ready in 5-30 seconds depending on the profile. You can:

What You'll See

What Makes a Good Evaluation?

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."

Next Steps