Start here

Run your first sandbox

Create an isolated MicroVM, run a command, and clean it up with the Edge public API.

Zeish gives agent workloads a short-lived, hardware-isolated Linux sandbox. Each sandbox belongs to an organization and is controlled with an API key.

Create an API key in the Zeish console, store it outside source control, and use it as the Bearer token for public API requests.

terminal
1export ZEISH_API_KEY="zeish_live_..."23curl -X POST https://api.zei.sh/api/v1/public/sandboxes \4  -H "Authorization: Bearer $ZEISH_API_KEY" \5  -H "Content-Type: application/json" \6  -d '{"name":"first-agent-run"}'