Management APIs
The Management APIs are administrative interfaces for managing the cPod platform itself, as opposed to the EDM Domains which store your enterprise data graph.
Management APIs are typically used by platform administrators and DevOps teams, not application developers. If you are building an application that reads or writes enterprise data, start with the EDM Domains instead.
What is covered here
| API | Purpose |
|---|---|
| Tenants | Top-level isolation boundary — each tenant has its own data, billing, and configuration |
| Organizations | Sub-units or groupings within a tenant, used for access control and resource scoping |
| User Profiles | Identity and role management for users within a tenant |
| Credentials | API keys and service account credentials |
| Pods | Compute pods that run skills and workflows |
| Events | Platform-level audit and lifecycle events |
Authentication
All Management API requests require a valid Bearer token. Service accounts used for management operations should be granted the platform:admin scope.
Authorization: Bearer <your-api-key>Base URL
https://api.cyberpod.app/v1When developing locally with the cPod Emulator, use:
http://localhost:4000/v1