Pensyve Cloud

Pensyve Cloud is the managed service at pensyve.com. Same engine, zero infrastructure. Sign up, grab an API key, and start remembering.

What You Get

FeatureDescription
Hosted APIapi.pensyve.com — same REST API as self-hosted, managed for you
DashboardReal-time overview, memory browser, activity charts, usage stats
API Key ManagementCreate, revoke, and rotate keys from the dashboard
Three-Tier BillingPay only for what you use — standard, multimodal, and extraction operations
SSOSign in with GitHub, Google, or email magic links
Multi-regionDeployed on AWS us-east-2, with data residency guarantees

Quick Start

1. Create an Account

Go to pensyve.com/sign-in and sign in with GitHub, Google, or email.

2. Create an API Key

Navigate to Dashboard → API Keys and click Create Key. Copy the key — it's only shown once.

3. Connect Your SDK

import pensyve

p = pensyve.Pensyve(
    api_url="https://api.pensyve.com",
    api_key="psk_your_key_here",
    namespace="my-agent",
)
import { Pensyve } from "pensyve";

const p = new Pensyve({
  baseUrl: "https://api.pensyve.com",
  apiKey: "psk_your_key_here",
});

4. Start Remembering

p.remember(entity="user", fact="Prefers dark mode", confidence=0.9)
results = p.recall("UI preferences", entity="user")

That's it. Check the dashboard to see your memories appear in real time.

Dashboard

The dashboard gives you visibility into your memory runtime:

  • Overview — total memories, entity count, storage usage, P95 recall latency
  • Activity Chart — recalls, remembers, and forgets over the last 30 days
  • Memory Types — breakdown of episodic, semantic, and procedural memories
  • Memory Browser — search, filter, and inspect individual memories with confidence scores and stability ratings
  • Billing — usage meters for each operation tier, estimated cost, payment management

API Authentication

Every request to api.pensyve.com must include your API key:

Authorization: Bearer psk_your_key_here

Keys are scoped to your account and namespace. You can create multiple keys for different environments (dev, staging, production) and revoke them independently.

Pensyve Cloud runs the same open-source engine as self-hosted Pensyve. There's no vendor lock-in — export your data anytime and run it locally.

Self-Hosted vs. Cloud

Self-HostedPensyve Cloud
SetupInstall + configureSign up + API key
InfrastructureYou manageWe manage
StorageSQLite (local)Postgres (managed)
ScalingManualAutomatic
CostFree (Apache 2.0)Pay-per-operation
Data residencyYour machineAWS us-east-2
SupportCommunityPriority

Both options use the same SDKs, same API, same retrieval engine. Switch between them by changing a URL.