Pods
Pods isolate multi-tenant work: a group of cells with shared policy, compliance metadata, and cycle send.
Organization
Parent
Pod
This guide
Cell
Parent
CRUD and nested reads
Create pods, attach cells, then use overview, messages, conversations, compliance, stop-list, and usage endpoints.
| Read | Path |
|---|---|
| Overview | GET /pods/{id}/overview |
| Messages | GET /pods/{id}/messages |
| Compliance | GET /pods/{id}/compliance |
| Stop list | GET /pods/{id}/stop-list |
const pod = await agentcell.pods.create({ name: "acme", clientId: "pod-acme-v1" });Common errors
- VALIDATION_ERROR
Pod name or client_id missing.
Copy for Cursor / Claude
Create a pod, then attach cells and enable ignore lists.
curl -X POST https://api.agentcell.store/v1/pods -H "Authorization: Bearer $AGENTCELL_API_KEY" -d '{"name":"acme","client_id":"pod-acme-v1"}'