Skip to content

Introduction

ShareOut turns an idea into a live web page. You send files, you get a URL. From there, the same page can hold data, take uploads, send email, and run on a schedule — all through one REST API.

Everything you publish is an artifact — a versioned bundle of files served at a live URL.

  • Files — HTML, CSS, JS, images. The entrypoint is index.html by default.
  • Versions — every publish creates a new version. Roll forward, never lose history.
  • Visibilitypublic, unlisted, or private.
  • Data — each artifact has its own JSON store, tables, and file blobs.
  • Jobs — scheduled or event-driven tasks attached to the artifact.
You want to…Endpoint
Publish or update a pagePOST /v1/publish
List and manage artifacts/v1/artifacts
Read or write artifact data/v1/data/{id}/json
Store files/v1/data/{id}/blobs
Schedule a task/v1/jobs
Share with collaborators/v1/artifacts/{id}/collaborators
https://shareout.site

Ready to publish your first page? Head to the Quickstart.