Built for AI agents and fast builders

Domain + Deploy
in one command

Register a domain, configure DNS, deploy your code, and provision SSL. One command. Under 30 seconds.

Get Started → View API
Terminal
$ hoist deploy myapp.dev --source https://github.com/user/repo
 
myapp.dev is available ($14.99/yr)
Registered myapp.dev (expires 2027-02-28)
Building project...
Deploying...
DNS configured
SSL provisioned
 
LIVE https://myapp.dev — deployed in 18s

Everything in one step

No more switching between registrar, DNS provider, and hosting dashboard.

🔍

Instant Domain Search

Check availability across 14 TLDs in a single API call. Get pricing, suggestions, and register instantly.

🌐

One-Click Registration

Register your domain with one API call. No forms, no waiting, no WHOIS dance. Just domain in, confirmation out.

Auto DNS Config

DNS records configured automatically when you deploy. A records, AAAA records, all pointing to the right place.

🚀

Deploy from Git

Point to a GitHub repo and we handle the rest. Build, deploy, and serve your code globally.

🔒

Auto SSL

SSL certificates provisioned automatically via Let's Encrypt. HTTPS from the first request. Zero config.

🤖

Agent-Native API

Every response is structured JSON. Built for AI agents that need to register domains and deploy code programmatically.

API-First Design

Structured JSON responses. Bearer token auth. Built for machines.

POST /api/domains/search
{
  "domain": "myapp.dev"
}

// Response:
{
  "available": true,
  "domain": "myapp.dev",
  "price_cents": 1499,
  "price_formatted": "$14.99/yr",
  "tld": ".dev"
}
POST /api/deploy
{
  "domain": "myapp.dev",
  "source_url": "https://github.com/user/repo"
}

// Response:
{
  "deployment": {
    "deploy_id": "dpl_a1b2c3d4e5f6",
    "status": "building",
    "domain": "myapp.dev"
  }
}
GET /api/deploy/dpl_a1b2c3d4e5f6
// Poll until status is "live"
{
  "deployment": {
    "deploy_id": "dpl_a1b2c3d4e5f6",
    "status": "live",
    "deploy_url": "https://myapp.dev",
    "domain": "myapp.dev"
  }
}

Simple Domain Pricing

No markup. No hidden fees. Just annual registration.

.com
$12.99/yr
.io
$39.99/yr
.dev
$14.99/yr
.app
$14.99/yr
.ai
$79.99/yr
.co
$29.99/yr
.net
$11.99/yr
.org
$10.99/yr
.xyz
$9.99/yr
.sh
$29.99/yr
.me
$19.99/yr
.tech
$4.99/yr
.site
$2.99/yr
.cc
$12.99/yr

Ship in 30 seconds

Install the CLI and deploy your first project.

$ npx hoist-cli login && npx hoist-cli deploy myapp.dev copy


Create Account → API Reference