Introduction
Host files on Zog — sharing, retention, quotas, and the upload API.
Zog is prepaid file hosting with share links, collaborator invites, and a public upload API.
Product guides
- Sharing — links, passwords, expiry, and collaborators
- Retention — 30-day automatic deletion
- Quotas & billing — plans and over-quota behavior
API
Zog’s public API lets you upload files from scripts, CI, and backends without a browser session.
- Personal API keys — create and revoke from Settings
- Direct-to-storage uploads — init → PUT to a signed URL → complete
- Multipart for large files — automatic when a file is over 100 MiB
Base URL
https://zog.watchAll authenticated endpoints live under /api/v1.
Quick start
- Create a key in Settings → API keys
- Init an upload with
POST /api/v1/uploads PUTthe file bytes to the returneduploadUrl- Call
POST /api/v1/uploads/complete
See Authentication and Upload for details.