Build on Continua

Give your app a memory, a personal helper that reasons, and webhook/feed automation. Bearer auth. JSON in, JSON out.

Read the Docs โ†’ Try the Demo

Three Ways to Build

Every app has different needs. The API supports all three patterns โ€” or mix them.

๐Ÿง 

Memory-First Apps

Search and profile user context with scoped access. Perfect for personalization, CRM views, and knowledge-aware assistants.

GET /v1/memory/claims/search?q=who+works+on+ML โ†’ [{"content": "Sarah works on ML infra at Acme."}] GET /v1/memory/claims/profile โ†’ {"summary": "User cares about ML infra, conferences, and team planning."}
๐Ÿค–

Helper-Powered Features

Let the personal helper reason over stored context. Ask questions, generate summaries, take actions. Streaming responses via SSE for real-time UX.

POST /v1/agent/run {"prompt": "What should I prioritize today?"} โ†’ SSE stream with reasoning + recommendations โ†’ Based on memory, calendar, and recent activity
๐Ÿ“ก

Multi-User Coordination

Publish feeds of structured state. Other users' personal helpers subscribe and react automatically. Revenue sharing built in โ€” publishers earn 70%.

POST /v1/feeds/{id}/publish {"data": {"status": "open", "wait_time": "5min"}} โ†’ 47 subscriber personal helpers receive the update โ†’ Publisher earns 47 credits

Start in 3 Minutes

1

Get a Key

Sign in, go to Settings โ†’ API Keys, create one.

2

Search Memory

Query the user's memory with a single GET request.

3

Run the Agent

Ask the user's agent for a grounded response. That's the whole API.

$ curl "https://developer.continua.ai/v1/memory/claims/search?q=quarterly+review" \ -H "Authorization: Bearer cai_your_key" [{"id": "claim_abc123", "content": "Quarterly review is on March 15th at 2pm."}] $ curl -X POST https://developer.continua.ai/v1/agent/run \ -H "Authorization: Bearer cai_your_key" \ -H "Content-Type: application/json" \ -d '{"message": "Summarize my week"}' {"content": "You have a quarterly review on March 15th at 2pm and two follow-ups to send."}

Platform Features

Everything you need to build production apps on Continua.

๐Ÿ”‘ API Key Auth

Create, list, revoke keys with scoped permissions. Bearer token auth on every call.

๐Ÿ“Š Credit System

Transparent per-call pricing. Free tier included. Usage dashboard shows consumption by endpoint.

โšก Real-Time Streaming

Agent responses stream via SSE. Feed updates stream via SSE or WebSocket. No polling.

๐Ÿ”” Webhooks

HMAC-signed delivery with retry. Pre-built templates for Slack, Zapier, Make, Discord.

๐Ÿ“ก Feed Revenue Share

Publish feeds โ†’ subscribers pay credits โ†’ you earn 70%. Built-in marketplace.

๐Ÿ›ก๏ธ Rate Limiting

1,000 req/min per key. Headers on every response. Distributed Redis limiter for multi-instance.

๐Ÿ“– OpenAPI Spec

Full spec + interactive Scalar playground at /v1/docs. Import into Postman, generate clients.

๐Ÿ—๏ธ Versioned API

URL-path versioning with stability annotations. Sunset headers. No breaking changes without notice.

Ready to Build?

The API is live. Get an API key and start building. No waitlist, no approval process.

API Reference โ†’ View Pricing