Skip to main content

Developer Portal

The Developer Portal is a self-service web interface for API consumers. It lets developers and partners explore your API catalog, test endpoints in the browser, and download OpenAPI specifications — without access to the operations console.

Consumer journey guides

What the portal provides

FeatureDescription
API discoveryBrowse all collections and endpoints assigned to the client
Interactive testingSend real requests directly from the browser
cURL generationAuto-generate copy-paste cURL commands
OpenAPI downloadDownload API specs in OpenAPI 3.0/3.1 format
Profile switchingSwitch between access profiles (e.g., sandbox vs production)
Passwordless loginSign in via a magic link sent to email — no password needed
Zerq Copilot for GatewayAI assistant with Gateway MCP (collections, endpoints, test calls) — same UX patterns as management Copilot; requires a selected profile and server-side LLM config — see Zerq Copilot

How it works

  1. Admin setup: create/update a client, assign collections, enable portal access, and whitelist consumer emails.
  2. Consumer sign-in: request and use a magic link to authenticate.
  3. Scoped visibility: the portal shows only collections/proxies assigned to that client.
  4. Self-service usage: consumers browse endpoints, run test calls, and download OpenAPI specs.

Who can access the portal?

Access to the Developer Portal is controlled by the platform admin:

  1. A Client must have Developer Portal access enabled
  2. Only authorized email addresses listed on the client can sign in
  3. Once signed in, consumers see only the collections assigned to their client

This ensures partners only see what they're allowed to see.

URL

The Developer Portal runs at http://localhost:3001 in local development (or your configured domain in production).

Platform operators can surface it from the Zerq console sidebar (next to Documentation) by setting the management frontend env var NEXT_PUBLIC_DEVELOPER_PORTAL_URL to the portal’s public origin (for example https://devportal.zerq.dev).

Next steps