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

Inference at the edge

Edge AI

Edge AI hosts Zipper’s inference catalog. Call language, embedding, and classification models from Edge Functions without standing up a GPU fleet. Tokens are billed per workspace, and prompts can be redacted before they hit logs. This is a Cloudflare Cloudflare Workers AI alternative included on every Zipper plan.

Cloudflare analogue: Cloudflare Workers AI

What it is

Edge AI hosts Zipper’s inference catalog. Call language, embedding, and classification models from Edge Functions without standing up a GPU fleet. Tokens are billed per workspace, and prompts can be redacted before they hit logs.

Cloudflare analogue: Cloudflare Workers AI. SLA 99.9% · p99 420ms. Admins attach models. Operators may change quotas.

  • ▸Language models
  • ▸Embeddings
  • ▸Prompt redaction
  • ▸Per-workspace quotas

How it works

Attach zip-fast, zip-large, or embed-v1 to the workspace. Call from Edge Functions without a GPU fleet.

Prompts can be redacted before Watchtower. Identical prompts may be cached.

Use cases

Concrete ways teams use this service on day one.

Support draft replies

Agents want a first draft from tickets.

  1. Attach zip-fast as Support assistant, task text. Call it from a function on /api/draft.

Search embeddings

Docs search over a small corpus.

  1. Attach embed-v1. Store vectors in your database; Zipper only runs inference.

Set it up in the dashboard

Dashboard → Services → Edge AI. Attach a model and a task.

API

Control-plane: GET|POST /api/v1/ai. 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.

Attach a model

curl -sS -X POST https://tinyzipper.com/api/v1/ai \
  -H "Authorization: Bearer tz_live_YOUR_TOKEN" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{"name":"Support assistant","model":"zip-fast","task":"text"}'

List the same resource in JavaScript

const res = await fetch("https://tinyzipper.com/api/v1/ai", {
  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

Cap max tokens. zip-large is slower and for longer completions.

  • ▸SOC 2
  • ▸Prompt redaction

Runbook

Cap tokens per call. Redact prompts before they hit The Watchtower. Cache identical completions.

Next: Video Delivery · 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