curl, requests, or fetch against https://www.orgo.ai/api and you’re done. No SDK required.
Prefer a helper library? Skip to Use the SDK after you’ve
seen the raw calls. The SDK is a thin wrapper around the exact same
endpoints.
1. Get your API key
Create an account at orgo.ai/start, then copy your key from orgo.ai/workspaces.2. Create a workspace
Workspaces group related computers.id. You’ll pass it as workspace_id when creating a computer.
3. Create a computer
4. Take a screenshot
5. Click, type, and run shell commands
6. Let an AI drive it
Orgo exposes an OpenAI-compatible endpoint at/api/v1/chat/completions.
Point any OpenAI SDK at https://www.orgo.ai/api/v1, pass
computer_id, and the model will screenshot, click, and type on its own
until your instruction is done.
"stream": true. See Create chat completion for the full spec, including thread continuation, custom Anthropic key, and error handling.
7. Lifecycle
auto_stop_minutes. See Auto-stop.
Use the SDK
If you’d rather not wire HTTP calls by hand, the official SDKs wrap this exact surface. They give you typed helpers, connection pooling for VNC, and one-linecomputer.prompt("do X") for the AI agent loop.
ORGO_API_KEY from the environment and default to the
same base URL you’d call directly.
Next steps
API Reference
Every endpoint, every field.
Use any model
Claude, GPT, Gemini, Hermes. Any OpenAI-compatible model.
Embed computers
Drop a live VM into your own app via VNC.
Auto-stop
Suspend idle computers; resume on next call.