Overview

Choose a Fireraven product path and make your first API request.

Start building with the Fireraven developer platform by choosing the product path that matches your job:

  • FireGuard protects production agents with input and output guardrails.
  • Redraven evaluates AI systems with automated red-team tests and compliance reports.

First API Calls

Use FireGuard when you need a production request path that blocks unsafe user input before it reaches your model:

curl -X POST \
  "https://api.fireraven.ai/public/fireguard/v1/conversation?project_id=$FIREGUARD_PROJECT_ID" \
  -H "X-Api-Key: $FIREGUARD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"Production chat"}'

Use Redraven when you need to evaluate an existing AI system and export the results:

curl -sS \
  -H "X-API-Key: $REDRAVEN_API_KEY" \
  -H "X-Organization-Id: $REDRAVEN_ORGANIZATION_ID" \
  "$REDRAVEN_BASE_URL/api/v1/tests/$TEST_ID/results"

Choose Your Path

GoalStart here
Add guardrails to a live chat or agentFireGuard quickstart
Protect AI coding agentsFireGuard Agent Hooks
Export monitoring data from FireGuardMonitoring API reference
Run Redraven evaluations from PythonRedraven Python SDK
Pull Redraven metrics and reports over HTTPRedraven API authentication

On this page