html · zip → live url

Drop a file.
Get a link.

Instantly publish HTML or ZIP files to a unique, shareable URL. No build steps, no configuration, no waiting.

Using an AI agent? Connect it in one line

Drag & drop your file here

or click to browse — .html, .zip, .md accepted

$ *.dropfast.dev · max 50 mb · sign in to publish

50 MB

max file size

0

build steps

3 ways

API · MCP · dashboard

For agents

Connect your agent in one line.

Drop the hosted skill into Claude Code, Cursor, Codex, or any agent and it publishes over the plain REST API — no MCP server, no install package.

Install the skill (one line):

bash
mkdir -p ~/.claude/skills/dropfast && \
  curl -fsSL https://dropfast.dev/dropfast.SKILL.md -o ~/.claude/skills/dropfast/SKILL.md

Or paste this into the chat — hands-off setup:

prompt
Set yourself up to publish HTML artifacts to DropFast over its REST API, so you can hand me stable URLs instead of pasting code into chat.

1. Read https://dropfast.dev/dropfast.SKILL.md and follow it to wire yourself up.
2. Ask me for a DropFast API key — I'll create one at dropfast.dev/dashboard/api-keys. Store it as a secret, never in a committed file.

Then ask me exactly one question, and remember my answer:

  When should I publish artifacts to DropFast?
    1. Every HTML/Markdown artifact I generate.
    2. Only shareable deliverables — plans, prototypes, reports, reviews.
    3. Only when I explicitly ask.

Record the chosen mode in the skill file so the habit persists across sessions.

Per-client setup for Claude Code, Cursor, Codex, Gemini CLI & Junie →

One site.
Everything you do with it.

Every upload is a live URL in seconds. From there: lock it down, drive it over HTTP, or manage it by hand.

dropfast.dev/s/abc123xy/livepublic

Access control

Public, private, or password-protected. Toggle any time — no redeploy.

REST API

Full lifecycle over HTTP — create, update, delete. Wire it into CI.

POST /v1/sites

Dashboard

Rename, swap the file, or change visibility from one place. One click.

API keys

Scoped keys with expiry. Limit to create-only and revoke instantly.

df_sk_••••••••90d · create-only

Live in 30 seconds.

01

Drop

Drag an .html or .zip onto the upload zone. Sign in and publish in seconds.

02

Configure

Give the site a name and set access: public, private, or password-protected. Sensible defaults throughout.

03

Share

Copy the link. Your file is live at a unique, shareable URL. That's the whole product.

Developer API

Wire it into
your pipeline.

The REST API supports the full site lifecycle. Drop DropFast into any CI workflow and ship on every push — no browser required.

Scoped API keys with configurable expiry
Idempotent updates via name slug
Instant delete or visibility toggle via API
terminal

# upload a site

curl -X POST \

https://api.dropfast.dev/v1/sites \

-H "Authorization: Bearer df_sk_••••••••" \

-F "file=@./dist/index.html" \

-F "name=my-demo"

 

# 201 Created

{

"id": "abc123xy",

"url": "https://dropfast.dev/s/abc123xy/",

"accessMode": "public",

"created_at": "2026-06-23T14:32:01Z"

}

One motion.
Then it's done.

Sign in to publish in seconds — then manage sites, control access, and use the API.

View API docs →