Now in public beta

Website hosting
for the AI age.

Your AI built something. Getting it online shouldn't mean signing up for three platforms, clicking through OAuth flows, and reading a deployment guide. ItsLive goes live before the YouTube ad ends.

Claude
Claude Opus 4.7
C
I've finished your team dashboard — charts are pulling live data. Looks sharp. It's a local file right now, only you can see it.
Use itslive.fyi to deploy it so the whole team can see it.
C
Used ItsLive API · 4 calls
POST /signup → code sent to email
POST /verify → api_key: il_live_···
POST /sites  → URL assigned
PUT  /sites/violet-crane-42
Done. Your dashboard is live at violet-crane-42.itslive.fyi — paste the link in Slack.
52s
Idea to live URL, measured
200+
Countries your site loads fast
$0
To get started, forever
1
Thing you actually do
Works with
Claude Claude Code ChatGPT Codex Cursor GitHub Copilot Gemini Any LLM
02 / Getting started

Your setup guide
is one message.

Copy the prompt below. Paste it into Claude, ChatGPT, or any AI assistant. That's the entire onboarding.

01
You do one thing
Check your email, copy the code, paste it to your AI.
02
Your AI gets access
A key arrives in the response — no dashboard, no redirect.
03
A URL is ready instantly
Auto-generated, globally unique. Custom names on paid plans.
04
Your site goes live
Upload HTML, CSS, JS, images. Online within a second.
Paste into your AI
Read and deploy a site for me. My email: [your email here] Follow the onboarding steps in the docs. Ask me for the verification code when prompted. Once I give you the code, complete the signup and deploy the site I describe.
Replace [your email here] before sending.
03 / How it works

Four API calls.
That's the whole thing.

01

POST /signup

Send your email. We reply with a 6-character code — nothing is stored until you verify.

02

POST /verify

Return the code. An API key comes back in the response body. That's your credential, forever.

03

POST /sites

Create a site. Get a globally-unique live URL in the response. No configuration, no naming required.

04

PUT /sites/{name}

Upload a ZIP of your files. The old version stays live until the new one is fully in place.

agent shell  
# 1. Request a code
curl -X POST \
  -d '{"email":"you@example.com"}'
→ "Check your email for a code."

# You paste: AH7X2K9
curl -X POST \
  -d '{"email":"you@example.com","code":"AH7X2K9"}'
→ {"api_key": "il_live_..."}

# 2. Create a site
curl -X POST \
  -H "X-API-Key: il_live_..."
→ {"url": "https://violet-crane-42.itslive.fyi"}

# 3. Publish your site
curl -X PUT \
  -H "X-API-Key: il_live_..." \
  --data-binary @mysite.zip
✓ Live at https://violet-crane-42.itslive.fyi

Built for AI agents. Works for everyone.

Speed

Goes live instantly

Upload your files and the site is on the internet before you blink. No build pipeline, no deployment queue, no waiting.

ItsLive <1s  ·  Netlify ~20s  ·  GitHub Pages 2–5min
Auth

No OAuth. Ever.

API key arrives in the response body. Your AI starts deploying immediately — no redirect flows, no dashboards to click through, no browser required.

Deploy

Full sites, not just pages

Upload a ZIP of HTML, CSS, JS, and images. Single-page apps work out of the box. It's not a pastebin for HTML files.

Global

Fast everywhere

Served from 200+ locations worldwide. Tokyo loads as fast as New York. No CDN configuration required.

Reliability

Safe to update

New version uploads fully before the old one comes down. Visitors never see a half-deployed site.

Access

Password protected

Lock any site behind a password with one API call. Visitors see a clean login page — no extra setup required.

DX

Built for machines to read

Every error has a code field your AI can parse. Usage stats queryable via API. No screen-scraping, no ambiguity.

Start free. Scale when your agents do.

Free
$0
forever
  • 3 active sites
  • 5 MB per site
  • 50 publishes / month
  • 100 API calls / hour
  • Password protection
  • Auto-generated URLs
  • Custom site names
  • Custom domains
  • Site analytics
Get started
Builder
$9
per month
  • 25 active sites
  • 25 MB per site
  • 500 publishes / month
  • 1,000 API calls / hour
  • Password protection
  • Custom site names
  • Custom domains
  • Site analytics
Free during beta
Studio
$29
per month
  • 200 active sites
  • 100 MB per site
  • Unlimited publishes
  • 10,000 API calls / hour
  • Everything in Builder
  • Priority support + SLA
Free during beta

The docs live at a URL.

We don't list endpoints on marketing pages — they'd be stale the moment we ship something new. The canonical reference is a plain-text file at a stable URL, formatted so both humans and AI agents can read it directly.

Read the API docs
FAQ

Common questions.

Can I use ItsLive with Claude, ChatGPT, Codex, or Cursor?

Yes — any tool that can make HTTP requests works. Claude and Claude Code can follow the instructions at https://api.itslive.fyi/llms.txt autonomously. For ChatGPT, Codex, Cursor, GitHub Copilot, or Gemini, paste the getting-started prompt from this page into whichever tool you're using.

How do I deploy an HTML file or dashboard?

Sign up, get an API key, then: PUT /sites/{name} with your HTML file and Content-Type: text/html. A live URL comes back in the response. Signup to live URL takes under a minute.

How do I host an AI-generated website?

POST to /sites to create a slot, then PUT to /sites/{name} with your HTML file or a ZIP of the full site. If the AI that built the files has API access, it can do the upload itself — no browser, no dashboard, no human step required.

How fast is a deploy?

Under a second after upload. No build step, no deployment queue. Files land on a global CDN and serve immediately.

Is there a free tier?

Yes. Three active sites, 5 MB each, 50 deploys a month — no credit card, no expiry.

What kind of sites can I host?

Static sites: HTML, CSS, JS, images. Single-page apps with client-side routing work out of the box. No server-side code or databases.

How is this different from Netlify or Vercel?

Netlify and Vercel are built for developers at a dashboard. ItsLive is API-first: the key comes back in a JSON response, there's no OAuth redirect, and a deploy completes in one PUT request. An AI agent can go from zero to live URL with four API calls and no human intervention.