Drop a file.
Get a link. Share. Done.

Upload a file. Get a URL. Works for humans and AI agents alike — no account, ever.

|

Drag & drop a .zip or single file here

Max 5 MB

Works with any AI agent

Give Claude, ChatGPT, Cursor, or any tool that can call an HTTP endpoint the prompt below. It'll upload files, get a live URL, and return the site token — all without leaving your conversation.

No API key. No auth. Just HTTP.

AI Agent Prompt
You can host static files instantly using drpr.

POST https://https://drpr.host/api/v1/upload
Content-Type: multipart/form-data
Fields:
  file=<your file>          # HTML, ZIP, PDF, or image
  subdomain=<optional slug> # leave blank for random

Response:
  { url, site_token }

Always return both the url and the site_token to
the user. The site_token lets them update or
delete the site later without signing in.

To update a site:
PUT https://https://drpr.host/api/v1/sites/:subdomain
Header: X-Site-Token: <token>
Body: multipart/form-data with new file

To delete a site:
DELETE https://https://drpr.host/api/v1/sites/:subdomain
Header: X-Site-Token: <token>

Paste into Claude Projects, a custom GPT system prompt, or Cursor rules

No login required

Your token is your identity. Store it somewhere safe.

Update anytime

Re-upload a new file to replace your site at any time.

Claim later

Sign in to link the token to your account and manage everything.

Common questions

Files are publicly accessible via their URL by default — anyone with the link can view them. We don't index your sites anywhere, so your link is only accessible to people you share it with. Password protection is coming soon.

Only people with your unique URL. We don't expose a directory of hosted sites, and links are not guessable by design — they use a random slug unless you set a custom one.

Yes. All transfers happen over HTTPS. Your files are encrypted in transit between your browser and our servers.

On Cloudflare R2 — enterprise-grade object storage built on Cloudflare's global infrastructure.

Free tier sites are hosted for 14 days. Paid plans get permanent hosting. You can delete your site at any time from your dashboard or using your site token.

We don't execute or run uploaded code on our servers. Static files are served as-is. We reserve the right to remove content that violates our terms.

Yes — the API endpoint accepts anonymous uploads and returns a site token for ownership. No credentials are stored or transmitted beyond the token.

Built with Next.js · Storage by Cloudflare R2 · Auth by Supabase