# Pods

A **pod** is the top-level workspace. Everything else (projects, agents, skills, routines) belongs inside one.

Create a new pod for new teams or customer accounts.

## Create a pod

```ts
const { data: pod } = await client.pod.create({
  body: { name: "Acme" },
})
```

## Related

- **[Projects](/concepts/projects)** — what lives inside a pod.
- **API reference:** [Pods](/api-reference#tag/pod)