# Create a network

Collection: api
Human docs: https://zei.sh/docs/api

Create an organization-scoped logical network.

POST /public/networks
Permission: ORG_MANAGE.
Attach the network to sandboxes with networkId.
Request body: {"name":"agent-network","slug":"agent-network","region":"bremen"}
Response: The created network with id, organizationId, name, slug, region, and createdAt.

Example:

```
curl -X POST https://api.zei.sh/api/v1/public/networks \
  -H "X-API-Key: $ZEISH_API_KEY"
  -H "Content-Type: application/json" \
  -d '{"name":"agent-network","slug":"agent-network","region":"bremen"}'
```
