Cloud Without a Dashboard
Agent Cloud — Cloud Infrastructure Without a Dashboard
Every cloud provider forces you through a dashboard. AWS Console. GCP Console. Azure Portal. Hundreds of tabs, wizards, and confirmation dialogs — all designed for humans clicking through UIs.
Your AI agent is not a human. It does not click. It does not browse. It calls APIs.
Agent Cloud has no dashboard. There is no console. No portal. No GUI. Everything is API. The customer can be software.
How it works
The entire lifecycle — from discovery to decommission — is a sequence of HTTP calls. No browser required at any step.
- Discover. Agents find the API via
openapi.jsonorllms.txt— machine-readable formats designed for automated consumption. - Sign up. A single POST creates an account and returns an API key. No email verification. No CAPTCHA. No human.
- Provision. POST to
/v1/instancesand get a running VM with an IP and SSH key in minutes. - Manage. List instances, check usage, resize, or destroy — all via the same REST API.
- Billing approval by human. When the agent needs to exceed sandbox limits, a human approves the Stripe checkout. This is the only step that requires a person.
The full agent flow
Discovery and signup — everything an agent needs to go from zero to API key:
# 1. Agent discovers Agent Cloud via OpenAPI spec or llms.txt
curl https://api.asiagent.cloud/v1/openapi.json
# 2. Sign up — no email, no password, no human
curl -X POST https://api.asiagent.cloud/v1/agent/signup \
-H "Content-Type: application/json" \
-d '{"agent_name": "my-build-agent", "callback_url": "https://example.com/webhook"}'
# Response:
# {
# "api_key": "ak_sandbox_abc123...",
# "tier": "sandbox",
# "limits": { "max_instances": 2, "max_hours": 4, "vcpus": 1, "ram_mb": 1024 }
# }Provisioning infrastructure:
# 3. Provision a VM — one API call
curl -X POST https://api.asiagent.cloud/v1/instances \
-H "Authorization: Bearer ak_sandbox_abc123..." \
-H "Content-Type: application/json" \
-d '{"image": "ubuntu-24.04", "size": "micro"}'
# Response:
# {
# "id": "inst_x7k9m2",
# "status": "provisioning",
# "ip": "203.0.113.42",
# "ssh_key": "ssh-ed25519 AAAA...",
# "expires_at": "2026-03-06T18:00:00Z"
# }Ongoing management:
# 4. Check what's running
curl https://api.asiagent.cloud/v1/instances \
-H "Authorization: Bearer ak_sandbox_abc123..."
# 5. Check usage
curl https://api.asiagent.cloud/v1/usage \
-H "Authorization: Bearer ak_sandbox_abc123..."
# 6. Clean up
curl -X DELETE https://api.asiagent.cloud/v1/instances/inst_x7k9m2 \
-H "Authorization: Bearer ak_sandbox_abc123..."The trust model: signup is trivial, trust lives at the quota layer
Traditional cloud providers gate everything behind identity verification, credit cards, and approval queues. That model breaks when the customer is an autonomous agent that needs compute in the next 30 seconds.
Agent Cloud inverts the model. Signup is instant and free. Every new account starts in a sandbox with tight resource limits — a couple of small VMs, a few hours of runtime, auto-expiry. The agent can do real work immediately, but it cannot run up a bill.
Trust scales with the relationship. When the agent (or its human operator) needs more, they upgrade through a Stripe checkout that a human approves. Quotas expand. The API stays the same.
Who this is for
- AI agents. ChatGPT, Claude Code, Cursor, LangChain, CrewAI, AutoGen — any agent that can make HTTP requests can provision and manage cloud infrastructure autonomously.
- CI/CD pipelines. Build systems that need ephemeral compute for test runs, compilation, or deployment staging. No pre-provisioned runners. Spin up what you need, tear it down when you're done.
- Automated toolchains. Monitoring systems that auto-scale. Batch processors that self-provision. Any software that needs to create infrastructure as part of its normal operation.
- Anyone who wants infrastructure without a GUI. If you have ever wished you could delete the AWS Console from your life and just talk to an API, this is your cloud.
Frequently asked questions
Is there really no dashboard?
Really. There is no web console, no portal, no admin panel. Every interaction with Agent Cloud happens through the REST API. If you want a UI, you build one — or you let your agent handle it.
How do I see what's running?
GET https://api.asiagent.cloud/v1/instances — returns every instance under your account with status, IP, resource usage, and expiry time.
How do I monitor usage?
GET https://api.asiagent.cloud/v1/usage — returns current period usage, remaining quota, and cost breakdown. Your agent can poll this to make autonomous decisions about resource management.
What if my agent goes rogue and provisions 100 VMs?
It can't. Sandbox accounts have hard limits enforced at the API layer. Even paid accounts have configurable quotas. The API returns a clear error when a limit is hit, so the agent can handle it gracefully.
Do I need an SDK?
No. The API is plain REST with JSON payloads. Anything that can make HTTP requests — curl, Python requests, fetch, a LangChain tool — works out of the box. The OpenAPI spec is the SDK.
Get started
The sandbox is free, requires no credit card, and takes one API call to activate. Point your agent at the API and let it provision its own infrastructure.