// Developer Documentation

    Build with Prolixis

    Clean APIs, official SDKs, and production-grade infrastructure for building memory-aware AI applications.

    // Quickstart

    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,
    });
    // Authentication

    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" }'

    Ready to start building?

    Access the Contivon beta and get your API key.