Zipper
ServicesPlansDocsSupport
Sign inCreate account

Start

  • Getting started
  • Quickstart in ten minutes
  • What to use Zipper for
  • Plans and quotas
  • Migrate from Cloudflare
  • Auth, tokens, and SSO
  • Control plane API

Delivery

  • The Crown
  • The Drawbridge
  • The Gallery
  • The Archives
  • Video Delivery

Security

  • The Keep
  • Portcullis
  • The Moat
  • The Scepter
  • Visitor Queue

Compute

  • Edge Functions
  • Site Hosting
  • Job Queues
  • Edge AI

Identity & access

  • The Herald
  • The Vault
  • The Throne Room
  • Origin Connect
  • Emails

Observe

  • The Watchtower

Start

  • Getting started
  • Quickstart in ten minutes
  • What to use Zipper for
  • Plans and quotas
  • Migrate from Cloudflare
  • Auth, tokens, and SSO
  • Control plane API

Delivery

  • The Crown
  • The Drawbridge
  • The Gallery
  • The Archives
  • Video Delivery

Security

  • The Keep
  • Portcullis
  • The Moat
  • The Scepter
  • Visitor Queue

Compute

  • Edge Functions
  • Site Hosting
  • Job Queues
  • Edge AI

Identity & access

  • The Herald
  • The Vault
  • The Throne Room
  • Origin Connect
  • Emails

Observe

  • The Watchtower

Private origin links

Origin Connect

Origin Connect keeps the origin off the public internet. A small connector in your network dials Zipper outbound; The Throne Room and The Crown then publish the hostname. No public IP and no inbound firewall holes. This is a Cloudflare Cloudflare Tunnel alternative included on every Zipper plan.

Cloudflare analogue: Cloudflare Tunnel

What it is

Origin Connect keeps the origin off the public internet. A small connector in your network dials Zipper outbound; The Throne Room and The Crown then publish the hostname. No public IP and no inbound firewall holes.

Cloudflare analogue: Cloudflare Tunnel. SLA 99.99% · p99 22ms. Admins register connectors. Operators may rotate them.

  • ▸Outbound-only connector
  • ▸Hostname routing
  • ▸Private origins
  • ▸Heartbeat health

How it works

A connector in your network dials Zipper outbound. No inbound firewall hole, no public origin IP.

Heartbeat keeps the connector in rotation. Pair hostnames with The Throne Room or The Crown.

Use cases

Concrete ways teams use this service on day one.

Publish an origin behind NAT

A Raspberry Pi or an office NAS should serve https://cam.example.com.

  1. Register a connector. Copy zip_conn_… once.
  2. Run the connector on the device. Heartbeat POST keeps it healthy.
  3. Point the Herald record at The Crown; origin stays private.

Set it up in the dashboard

Dashboard → Services → Origin Connect. Register name + hostname. Copy the secret.

API

Control-plane: POST /api/v1/connect/heartbeat. Send Authorization: Bearer tz_live_YOUR_TOKEN.

Creates count against the plan quota. A 402 plan_limit means you are at the cap — upgrade or delete an unused resource.

Register a connector

curl -sS -X POST https://tinyzipper.com/api/v1/connect \
  -H "Authorization: Bearer tz_live_YOUR_TOKEN" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{"name":"accra-origin","hostname":"origin.example.com"}'

Heartbeat

curl -sS -X POST https://tinyzipper.com/api/v1/connect/heartbeat \
  -H "Authorization: Bearer zip_conn_YOUR_SECRET"

List the same resource in JavaScript

const res = await fetch("https://tinyzipper.com/api/v1/connect/heartbeat", {
  method: "GET",
  headers: {
    Authorization: `Bearer ${process.env.ZIPPER_TOKEN}`,
    "Content-Type": "application/json"
  }
});
const json = await res.json();
if (!res.ok) throw new Error(json.error ?? res.statusText);
console.log(json);

Tips

Treat zip_conn_ secrets like origin passwords. Rotate by creating a new connector.

  • ▸SOC 2
  • ▸Zero-trust

Runbook

Keep the connector healthy. Pair hostnames with The Throne Room. Never open inbound ports.

Next: Emails · All docs · Create a free account

Zipper

An affordable Cloudflare alternative: CDN, WAF, edge compute, and bot checks. A Spatial Regal Technology platform by Spatial Regal Digital Ltd.

Product

  • Services
  • Pricing
  • Docs
  • vs Cloudflare
  • Cloudflare alternative
  • Workers alternative
  • Turnstile alternative
  • Create account
  • Support

Services

  • The Crown
  • The Keep
  • Portcullis
  • The Moat
  • The Herald
  • The Vault
  • The Scepter
  • The Watchtower

Legal

  • Terms
  • Privacy
  • Cookies
  • AUP
  • DPA
  • Security
  • Subprocessors
  • Billing
  • DMCA

© 2026 Spatial Regal Digital Ltd. Zipper is part of Spatial Regal Technology.

Powered by Spatial Regal · tinyzipper.com