Documentation

Orchela Documentation

Everything you need to deploy, monitor, and govern AI agents in production.

Quickstart — 3 API calls

terminal
# 1. Register
curl -X POST https://api.orchela.com/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"name":"Your Name","email":"you@co.com","password":"..."}'

# 2. Add your Groq key
curl -X POST https://api.orchela.com/v1/llm-keys \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{"key_name":"groq-prod","provider":"groq","api_key":"gsk_..."}'

# 3. Run an agent
curl -X POST https://api.orchela.com/v1/agents/run \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"agent_id":"sales-sdr","input":{"company":"Acme","contact_name":"Sarah"}}'
Quickstart

Deploy your first agent in under 5 minutes

  • Create an account
  • Add your LLM key (Groq is free)
  • Deploy an agent template
  • Run your first execution
Agent Configuration

JSON schema reference for building agents

  • agent.id, name, description
  • llms — provider, model, key_ref
  • workflow — task, decision, tool steps
  • Conditional routing & decision logic
REST API

Full API reference for all endpoints

  • POST /v1/agents/run
  • POST /v1/batch-run
  • GET /v1/agents/runs/{id}/trace
  • GET /v1/batches/{id}/summary
Guardrails & Quality

How Orchela scores and governs AI outputs

  • 10-signal quality scoring
  • Prompt-derived vocabulary checking
  • Hard penalty rules
  • Confidence alignment scoring
Integrations

Connect Orchela to your existing stack

  • Resend (email sending)
  • Slack webhooks
  • HTTP request tool
  • Custom OpenAI-compatible endpoints
Compliance & Security

SOC2, GDPR, and enterprise security

  • PII masking (GDPR Article 25)
  • Audit log exports
  • AES-256 key encryption
  • Multi-tenant isolation

Full documentation coming soon

We're writing comprehensive guides, tutorials, and examples. In the meantime, the interactive API reference is live at api.orchela.com/docs, and our team is happy to help directly.