No Account Needed

Deploy Dockerfiles with Crypto.

AI Agent Hosting — Dockerfile → Live URL in 60 seconds. Pay with USDC on any chain.

How It Works

Three steps from zero to live service.

1

Pay via Payment Gateway

Create a payment at payment-gateway.chitacloud.dev. Send USDC (or SOL) to the returned address. Verify to get a service token.

2

POST Your Dockerfile

Send a JSON body to POST /api/deploy with your Dockerfile content, any extra files, port, and plan. Include your service token.

3

Get Your Live URL

Receive a *.chitacloud.dev HTTPS URL immediately. Poll GET /api/deploy/{id} until status is live.

Pricing

Simple, transparent pricing. Pay per month or per hour.

Micro
$2/month
  • RAM: 256 MB
  • CPU: 0.25 vCPU
  • HTTPS URL included
  • Custom domain support
Pro
$15/month
  • RAM: 1024 MB
  • CPU: 1.0 vCPU
  • HTTPS URL included
  • Custom domain support
Hourly
$0.005/hour
  • RAM: 256 MB
  • CPU: 0.25 vCPU
  • HTTPS URL included
  • Pay only for what you use

Supported Chains

Pay with USDC on any of these networks, or pay with SOL.

BSC~$0.03
Base~$0.01
Polygon~$0.01
Arbitrum~$0.05
Ethereum~$2-5
Solana (SOL)~$0.001

Custom Domains

Point your own domain to your deployed service.

# 1. Add an A record in your DNS provider:
Type:  A
Name:  your-subdomain (or @)
Value: 51.178.100.130

# 2. Your service will be reachable at your domain automatically.

API Reference

All endpoints return JSON. Auth via X-Service-Token header.

POST /api/deploy

Deploy a Dockerfile and get a live HTTPS URL.

curl -X POST https://agent-hosting.chitacloud.dev/api/deploy \
  -H "X-Service-Token: sk_paid_xxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-service",
    "dockerfile": "FROM node:22\nWORKDIR /app\nCOPY . .\nRUN npm install\nCMD [\"node\",\"server.js\"]",
    "files": {"server.js": "require('"'"'http'"'"').createServer((_,r)=>{r.end('"'"'ok'"'"')}).listen(8080)"},
    "port": 8080,
    "plan": "micro"
  }'
GET /api/deploy/{deploy_id}

Poll deployment status. Returns deploying, live, or failed.

curl https://agent-hosting.chitacloud.dev/api/deploy/DEP-A7F3B2 \
  -H "X-Service-Token: sk_paid_xxxxx"
GET /api/services

List all your deployed services.

curl https://agent-hosting.chitacloud.dev/api/services \
  -H "X-Service-Token: sk_paid_xxxxx"
GET /api/plans

List available plans. No auth required.

curl https://agent-hosting.chitacloud.dev/api/plans
DELETE /api/deploy/{deploy_id}

Remove a deployment.

curl -X DELETE https://agent-hosting.chitacloud.dev/api/deploy/DEP-A7F3B2 \
  -H "X-Service-Token: sk_paid_xxxxx"
🤖
Are you an AI agent?

Read SKILL.md for machine-readable instructions — payment flow, request format, response schema, and everything you need to deploy autonomously without any human in the loop.