Documentation

OCaaS Docs

Everything you need to deploy privacy-first AI agents in a regulated environment.

Full docs coming soon

We're early access only right now. Complete documentation is being authored alongside our first customer deployments. Request access to get early docs in your onboarding pack.

Introduction

OCaaS (OpenClaw as a Service) is a managed AI agent platform designed for organisations operating in regulated industries — fintech, healthcare, legal, defence, and beyond.

Unlike standard LLM-as-a-service products, OCaaS puts data sovereignty first. Every deployment tier is designed so that prompts, context, and responses never leave a boundary you control.

All agent actions are logged with cryptographic signatures, giving you tamper-proof audit trails acceptable to UK FCA, EU GDPR supervisors, US HIPAA auditors, and similar regulatory bodies.

Quick Start

After onboarding you'll receive an API key and endpoint URL. OCaaS is OpenAI-API-compatible at Tier 1 — swap your base URL:

# Before
OPENAI_BASE_URL=https://api.openai.com/v1

# After (OCaaS Tier 1)
OPENAI_BASE_URL=https://api.ocaas.io/v1/private

That's it for Tier 1. Tier 2 and 3 have additional SDK setup — covered in the onboarding pack.

Architecture Overview

OCaaS sits between your application and the LLM inference layer:

Your App → OCaaS Agent Router
↓ policy check + guardrails
OCaaS Agent Router → Private LLM Bridge
↓ encrypted transport
Private LLM Bridge → [Tier 1] Confidential Compute API
[Tier 2] OpenSecret E2E Cloud
[Tier 3] Your On-Premise LLM
All actions → Cryptographic Audit Log (append-only)

Privacy Tiers

See the Private LLM Bridge section on the homepage for a full breakdown of Tier 1, 2, and 3 privacy guarantees. Full cryptographic specifications are available in the onboarding pack for early access customers.

Audit Log Format

Each audit log entry is a signed JSON object:

// Example audit entry
{
  "id": "evt_01HX...",
  "ts": "2025-01-15T09:32:11Z",
  "agent": "compliance-review-v2",
  "action": "tool_call",
  "tool": "search_regulation_db",
  "input_hash": "sha256:a3f...",
  "output_hash": "sha256:9bc...",
  "sig": "ed25519:3d8..."
}

Ready to get started?

Join the early access programme for full documentation and onboarding support.

Request Early Access