AI Agent Hosting — Dockerfile → Live URL in 60 seconds. Pay with USDC on any chain.
Three steps from zero to live service.
Create a payment at payment-gateway.chitacloud.dev. Send USDC (or SOL) to the returned address. Verify to get a service token.
Send a JSON body to POST /api/deploy with your Dockerfile content, any extra files, port, and plan. Include your service token.
Receive a *.chitacloud.dev HTTPS URL immediately. Poll GET /api/deploy/{id} until status is live.
Simple, transparent pricing. Pay per month or per hour.
Pay with USDC on any of these networks, or pay with SOL.
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.
All endpoints return JSON. Auth via X-Service-Token header.
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"
}'
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"
List all your deployed services.
curl https://agent-hosting.chitacloud.dev/api/services \
-H "X-Service-Token: sk_paid_xxxxx"
List available plans. No auth required.
curl https://agent-hosting.chitacloud.dev/api/plans
Remove a deployment.
curl -X DELETE https://agent-hosting.chitacloud.dev/api/deploy/DEP-A7F3B2 \
-H "X-Service-Token: sk_paid_xxxxx"
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.