Synapse OS
[ Sign In / Go Premium ]

// settings.module

Platform Settings

Governance, privacy, and compliance controls for teams operating under SOC 2, GDPR, and enterprise security review.

Enterprise Privacy
Compliance Active
Zero-Data Retention Mode ensures customer payloads are never persisted, logged, or cached by Synapse OS infrastructure.

Zero-Data Retention Mode

When active, request payloads and prompt contents are processed strictly in stateless edge memory for token pruning and cost tracking. Raw data is never stored on disk, written to logs, or cached.

No disk storage

Payloads never written

No request logging

Prompts excluded from logs

Stateless edge memory

Processed in-flight only

No cache retention

No vector or KV caching

retention_policy โ†’ if zero_data_retention === true then discard(payload) + bypass(logs) + bypass(cache)
Quickstart & SDK Documentation
Route any OpenAI or Anthropic SDK through the Synapse OS proxy firewall by changing one environment variable.
01

Generate a proxy key

Head to Organization and create a workspace-scoped API key for your environment.

02

Set the base URL

Point your SDK or HTTP client at https://api.synapseui.dev/v1. One line change.

03

Deploy as usual

Keep your existing models, headers, and retry logic. Synapse applies guardrails in-flight.

Update your environment file, then instantiate the OpenAI client as normal. The proxy forwards traffic and applies cost guardrails.

.env
env
OPENAI_API_KEY=sk_openai_...
SYNAPSE_PROXY_KEY=sk_proxy_prod_...
OPENAI_BASE_URL=https://api.synapseui.dev/v1
app.py
python
from openai import OpenAI
import os

client = OpenAI(
    api_key=os.environ["OPENAI_API_KEY"],
    base_url=os.environ["OPENAI_BASE_URL"],  # Synapse proxy endpoint
)

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello, Synapse"}],
)
Billing & Subscription
Stripe Secure
Manage your Synapse OS plan, payment methods, and download corporate invoices through the Stripe-hosted billing portal.

Tier 01

Solo Developer

$29/month

For independent engineers shipping a single production pipeline. Full firewall, pruning, and attribution.

  • 1 workspace, 1 proxy key
  • Up to 5M tokens / month
  • Real-time pruning & guardrails
  • 7-day audit retention
  • Community Slack support
Recommended

Tier 02

Team Governance

$249/month

Multi-tenant workspaces, departmental attribution, and compliance-grade controls for engineering orgs.

  • Unlimited workspaces & proxy keys
  • Up to 100M tokens / month included
  • SSO/SAML + audit log export
  • Zero-Data Retention attestation
  • Departmental cost attribution
  • Priority engineer-led support

Embed slot

Stripe Pricing Table

stripe-pricing-table

<stripe-pricing-table />

Drop the Stripe Pricing Table web component here with your pricing-table-id and publishable-key to render live, PCI-compliant checkout.

Audit & Notifications
Coming soon
Workspace Defaults
Coming soon