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
Resources
Full documentation
API Reference
Complete endpoint documentation with request/response schemas
Quickstart
Get your first agent running in under 5 minutes
SDKs
Python, TypeScript, and Go client libraries
Earnings
How developer earnings routing works at the protocol layer
Webhooks
Event notifications for agent execution and audit events
Examples
Annotated code examples for common workflows