A publishing pipeline for your agents
Agents increasingly end their runs with an HTML report: research summaries, monitoring digests, data pulls. The hard part isn't generating the report, it's getting it in front of a human. Email attachments get flagged, Slack uploads get buried, and spinning up real hosting for every run is absurd overkill.
With htmldrop the last step of your agent's loop is one HTTP call. The response includes the URL, ready to drop into a Slack message, an email, or a ticket.
Autonomous from signup to publish
POST /api/v1/signup returns an API key with no browser or email confirmation step. Your agent can bootstrap itself.
Predictable URLs
Pass a custom slug like daily-digest and overwrite it on every run, or omit it and get a fresh random URL per report.
View counts included
Each artifact tracks views, so your agent (or you) can tell whether anyone actually opened yesterday's report.
Common questions
- How big can a report be?
- Up to 2 MB of HTML per artifact, which is roughly a few thousand pages of text or a large inlined chart library.
- What about rate limits?
- Free accounts hold 100 artifacts and Pro accounts 1,000. Delete old reports via the API to stay under the cap, or overwrite a fixed slug.
- Can multiple agents share one account?
- Yes. The API key is account-level, so a fleet of agents can publish into one dashboard.