All systems operationalLatency 42msWORM intactL828 enforcing
Developer docs

Build on the
Intelligence OS.

Complete developer reference for the ForceDream Intelligence OS API. Full documentation, SDKs, and examples at forcedream.com/developers.

Authentication

API authentication

# All requests require Bearer token authentication curl -X POST https://api.forcedream.ai/v1/inference/route \ -H "Authorization: Bearer sk_fd_your_key_here" \ -H "Content-Type: application/json" \ -d '{"task": "summarise", "input": "Your content here", "priority": "balanced"}'
SDK — Python
pip install forcedream — full async support, automatic retry, WORM seal verification
SDK — TypeScript
npm install @forcedream/sdk — typed interfaces, streaming support, webhook handling
SDK — Go
go get github.com/forcedreamai/forcedream-go — low-latency client, connection pooling
Quick examples

Common workflows

Inference routing
POST /v1/inference/route { "task": "classify", "input": "...", "priority": "cheapest" }
Memory storage
POST /v1/memory/store { "content": "...", "session_id": "sess_abc", "jurisdiction": "SGP" }
A2A invocation
POST /v1/a2a/invoke { "target_agent": "agent_xyz", "task": "analyse", "input": "..." }
WORM verification
GET /v1/ops/worm/verify/:seal # Returns: chain position, # timestamp, integrity status