ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
    How Zuplo WorksRequest LifecycleProject StructureAuthenticationAPI KeysRate LimitingAPI ErrorsRoutingPolicy FundamentalsOpenAPIEnvironmentsSource Control and DeploymentDevelopment Options
Development
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
Monetization
Deploying & Source Control
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Concepts

Policy Fundamentals

Policies are modules that can intercept an incoming request or outgoing response. You can have multiple policies and apply them to multiple routes. There are built-in policies but of course, being a developer-focused platform you can easily create custom policies.

How policies work

How Policies Work

An inbound policy can intercept a request and modify the request before it reaches the request handler (or the next policy). It can also short-circuit the whole request lifecycle and immediately respond to the client.

An outbound policy intercepts the response from your request handler, allowing you to transform your response, or return a new one entirely.

Built-In Policies

Zuplo includes many built-in policies that make it easy to handle things like authentication, validation, and request modification.

Explore the navigation to see all of the built-in policies.

Custom Policies

The ability to write custom policies that run in-process of your Gateway is at the core of what makes Zuplo the Programmable API Gateway. You can write policies to handle virtually any task. To learn more about writing custom policies see the documentation.

Edit this page
Last modified on August 8, 2025
RoutingOpenAPI
On this page
  • How policies work
  • Built-In Policies
  • Custom Policies