Quickstart
This guide walks you through getting an API key, provisioning a cloud computer, and running your first AI agent task — all in under five minutes.1. Get your API key
- Sign in at build.withgiga.ai
- Navigate to Profile in the left sidebar
- Click Generate API Key
- Copy the key — it starts with
giga_sk_and is shown only once
2. Start a deployment and run an agent
The/api/deployments/start endpoint provisions a cloud computer and immediately kicks off an AI agent in a single call.
deployment.id — you’ll use it to poll for status.
3. Poll for completion
Provisioning and execution happen asynchronously. Poll every few seconds until status isrunning or completed.
| Status | Meaning |
|---|---|
provisioning | VM is booting, agent is queued |
running | Agent is actively executing |
completed | Agent finished its goal |
failed | Something went wrong — check logs |
4. Retrieve the result
Once the agent completes, download any files it produced from the sandbox Desktop.5. Clean up
Stop the deployment when you’re done to stop credit consumption.Next steps
Core Concepts
Understand the full object model before going deeper.
API Reference
Explore every endpoint with full request and response schemas.
Files Guide
Learn how to sync files in and out of the sandbox.
Dashboard
Prefer a UI? Use the web dashboard to launch computers without code.