Now in Public Beta

Your enterprise data, connected and audited.

cPod is the enterprise data platform that unifies people, assets, licenses, and risk into a single graph โ€” with built-in compliance controls and tamper-evident audit logs. SDKs for Python, Go, TypeScript, and .NET.

12Entity Types
4SDKs
SOC 2Ready
7yrAudit Retention
cpod-quickstart
Tamper-evident audit log๐Ÿ”’SOC 2 controls๐Ÿ—‚๏ธPeople & asset graph๐Ÿ›ก๏ธPII masking built-in
Why cPod

Enterprise data, finally under control

cPod gives compliance, security, and engineering teams a shared source of truth โ€” from access entitlements and software licenses to vulnerabilities and audit evidence.

Compliance Controls

SOC 2 ยท ISO 27001 ยท NIST

Track SOC 2, ISO 27001, NIST, and custom framework controls in one place. Each control has an owner, status, and last-assessed date โ€” ready for auditor export.

Unified Data Graph

12 Entity Types

People, technology assets, licenses, cloud resources, and vulnerabilities are connected by typed relationship edges โ€” enabling cross-domain queries your team can actually use.

Access Entitlements

Access ยท Entitlements

See who has access to what โ€” from SaaS apps to cloud resources โ€” without hunting through five different admin consoles. Entitlements link directly to the people and assets they cover.

Tamper-Evident Audit Log

Hash-chained ยท Immutable

Every create, update, and delete across all domains is automatically logged with a cryptographic hash chain. Evidence cannot be altered after the fact โ€” auditors can verify integrity with one API call.

Multi-Language SDKs

4 Languages

Your engineering team integrates in their language of choice โ€” TypeScript, Python, Go, or .NET. Same data model, same API conventions, same compliance guarantees across all four.

PII Masking Built-In

PII ยท GDPR ยท Privacy

Sensitive fields are masked automatically before storage or API response. No custom code required โ€” the platform enforces data minimization by default, reducing GDPR and privacy audit scope.

Multi-Language

Your language, our SDK

Install in seconds. Every SDK shares the same design โ€” learn one, know all four.

v1.0.0

TypeScript

npm
npm install @cpod/sdk
import { CpodClient } from '@cpod/sdk'

const client = new CpodClient({
  apiKey: process.env.CPOD_API_KEY,
})

const pods = await client.pods.list({
  tenantId: 'acme-corp',
  status: 'running',
})
View TypeScript docs
v1.0.0

Python

PyPI
pip install cpod-sdk
from cpod import CpodClient
import asyncio

client = CpodClient(api_key="...")

async def main():
    pods = await client.pods.list(
        tenant_id="acme-corp",
        status="running",
    )
    print(pods.data)
View Python docs
v1.0.0

Go

pkg.go.dev
go get github.com/cpod-ai/cpod-go
import "github.com/cpod-ai/cpod-go"

client := cpod.NewClient(
    cpod.WithAPIKey(os.Getenv("CPOD_API_KEY")),
)

pods, err := client.Pods.List(ctx,
    &cpod.PodListParams{
        TenantID: "acme-corp",
        Status:   cpod.StatusRunning,
    },
)
View Go docs
v1.0.0

.NET

NuGet
dotnet add package CpodSdk
using Cpod;

var client = new CpodClient(new CpodOptions {
    ApiKey = Environment.GetEnvironmentVariable(
        "CPOD_API_KEY")
});

var pods = await client.Pods.ListAsync(new PodListRequest {
    TenantId = "acme-corp",
    Status = PodStatus.Running,
});
View .NET docs
Free to start โ€” no credit card required

Ready to build on cPod?

Join thousands of engineers shipping enterprise software on cPod. Get your API key in 60 seconds and make your first API call in under 5 minutes.

โœ“ SOC 2 Type II certifiedโœ“ GDPR compliantโœ“ 99.9% uptime SLAโœ“ 24/7 enterprise support