Build with Prolixis
Clean APIs, official SDKs, and production-grade infrastructure for building memory-aware AI applications.
Quickstart
Get up and running with Prolixis in under 5 minutes — install the SDK, authenticate, and make your first call.
Authentication
API keys, OAuth flows, role-based scopes, and rotating credentials for production deployments.
Atlas API
Document understanding, multi-modal reasoning, and decision automation endpoints.
Contivon API
Persistent memory writes, contextual retrieval, namespace management, and TTL controls.
SDKs
Official TypeScript, Python, and Go SDKs. REST + WebSocket for streaming workflows.
Guides
End-to-end recipes for chat memory, agent workflows, document pipelines, and RAG augmentation.
Install & authenticate
Install the official SDK and configure your API key.
npm install @prolixis/sdk
import { Prolixis } from "@prolixis/sdk";
const client = new Prolixis({
apiKey: process.env.PROLIXIS_API_KEY,
});Write to memory
await client.contivon.memory.write({
namespace: "user:42",
content: "Prefers concise replies. Working on Q3 roadmap.",
tags: ["preference", "roadmap"],
});Retrieve relevant context
const context = await client.contivon.memory.retrieve({
namespace: "user:42",
query: "What is this user working on?",
limit: 5,
});Secure your requests
All requests authenticate via bearer token. Rotate keys from the dashboard and scope them per-environment.
curl https://api.prolixis.ai/v1/memory/retrieve \
-H "Authorization: Bearer $PROLIXIS_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "namespace": "user:42", "query": "preferences" }'