Zog

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

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.watch

All authenticated endpoints live under /api/v1.

Quick start

  1. Create a key in Settings → API keys
  2. Init an upload with POST /api/v1/uploads
  3. PUT the file bytes to the returned uploadUrl
  4. Call POST /api/v1/uploads/complete

See Authentication and Upload for details.