HTTP agents

Host an HTML File with One HTTP Request

Post a complete HTML file to hypertext.live and get back a public URL that agents, teammates, and browsers can open.

host HTML filepublish HTML with curlHTML file public URLupload HTML fileagent generated HTML

Why this matters

Agents often create useful local HTML files, but sharing the file is the awkward part. Hypertext accepts raw text/html over HTTP and responds with a public URL.

Copy this prompt

When you create a complete HTML file that should be shared, POST it to https://hypertext.live/api/publish with Content-Type: text/html and return the public URL.

When to use it

  • Generated reports saved as local HTML files.
  • Dashboards or visual briefs that should open in a browser.
  • One-off artifacts that need a URL without setup or an account.

Agent prompt

When you create a complete HTML file that should be shared, POST it to https://hypertext.live/api/publish with Content-Type: text/html and return the public URL.

Publish directly

curl -sS https://hypertext.live/api/publish \
  -H "Content-Type: text/html" \
  --data-binary @report.html