REGISTER NOW FOR API + AI SUMMIT 2026 | EARLY BIRD PRICING ENDS MAY 17 SECURE YOUR SPOT FOR THE KONG AGENTIC ERA WORLD TOUR GOVERN A2A TRAFFIC WITH KONG'S NEW AGENT GATEWAY DON’T MISS API + AI SUMMIT 2026 SEPT 30 – OCT 1
                      [Blog](/blog)Blog
                        |
                          We're Entering the Age of AI Connectivity [Read more](/blog/news/the-age-of-ai-connectivity)Read moreProducts & Agents:
                            • [Kong AI Gateway](/products/kong-ai-gateway)Kong AI Gateway
                            • [Kong API Gateway](/products/kong-gateway)Kong API Gateway
                            • [Kong Event Gateway](/products/event-gateway)Kong Event Gateway
                            • [Kong Metering & Billing](/products/usage-based-metering-and-billing)Kong Metering & Billing
                            • [Kong Insomnia](/products/kong-insomnia)Kong Insomnia
                            • [Kong Konnect](/products/kong-konnect)Kong Konnect
                          • [Documentation](https://developer.konghq.com)Documentation
                          • [Book Demo](/contact-sales)Book Demo
                          1. Home
                          2. Blog
                          3. Product Releases
                          4. More Control, Less Toil: Simplified Security and Policies in Kong Gateway 3.14
                          [Kong Gateway](/blog/kong-gateway)Kong Gateway
                          April 15, 2026
                          5 min read

                          # More Control, Less Toil: Simplified Security and Policies in Kong Gateway 3.14

                          Amit Shah
                          Director, Product Marketing, Kong
                          Andrew Jessup
                          Director of Product, Gateways and Mesh, Kong
                          Zongmin Li
                          Staff Product Manager, Kong
                          Veena Rajarathna
                          Staff Product Manager, Kong
                          Peter Marton
                          Principal Product Manager, Kong

                          The best platform teams don't write glue code — they configure great infrastructure. But as API platform architectures get more complex, policy logic does not always fit into a one-size-fits-all model. Not only that, but security toil compounds with every new service, credential, and cloud provider added to the mix. Kong Gateway 3.14 addresses these challenges and more.

                          Here's what's new in 3.14:

                          • - **Conditional Plugin Execution:** New condition field to specify additional conditions in order for the plugin to execute.
                          • - **JWT Nodes for Datakit:** Support complex auth use cases with JWT Verify, Sign, and Decode operations in Datakit, no code required.
                          • - **WebSocket Security & Observability:** OIDC, mTLS, and ACL authentication at the WebSocket handshake, with real-time metrics for connection health and session activity.
                          • - **OpenID Token Exchange:** Transform, scope, and delegate tokens at the gateway via native OAuth 2.0 Token Exchange (RFC 8693).
                          • - **Cloud-Native Auth Improvements:** Unified IAM authentication across AWS, Azure, and GCP — consistent cloud-native identity across your entire multi-cloud footprint.
                          • - **OpenMeter Plugin:** Real-time metering and consumption-based billing policies for API and AI traffic, within Kong Konnect.

                          Read on for a deep dive into each of these capabilities and what they mean for your platform.

                          ## Simplify complexity with conditional plugin execution

                          Managing gateway configurations at scale is harder than it looks. When a plugin needs to apply to most routes, but not all, teams could either duplicate configuration across routes and violate DRY (“Don’t Repeat Yourself”) principles, or write custom code to handle the exceptions. Neither scales well, and both create long-term maintenance debt.

                          With conditional plugin execution, users can now attach conditional expressions directly to any plugin, based on request attributes like headers, paths, or content types. The gateway evaluates these expressions in real-time and decides whether to run the plugin or bypass it entirely.

                          This means you can apply a single plugin broadly and let the expression handle the exceptions, keeping your configuration. Whether you're enforcing auth policies that shouldn't fire for internal traffic, scoping transformations to specific content types, or preventing a validation plugin from running in the wrong context, conditional execution gives you the granular control to do it right.

                          In 3.14 we’re adding this feature as a Beta release. Read more about how conditional plugin execution works and what you can do with it in [this blog](https://konghq.com/blog/engineering/conditional-policy-execution)this blog and [our documentation](https://developer.konghq.com/gateway/configure-conditional-plugin-execution/)our documentation.

                          ## Build complex authentication policies with JWT nodes for Datakit

                          Kong has long supported a number of out-of-the-box plugins for both validating and generating JWT tokens, as well as using those tokens to authenticate callers.

                          But sometimes JWT validation can get complicated. Routing based on claims, supporting multiple identity providers, conditional logic based on headers — these are common requirements that can be hard to accomplish with a standard plugin. Kong Gateway 3.14 adds native JWT nodes to the Datakit plugin, letting you incorporate JWT operations directly into your Datakit visual workflow alongside transformations, routing logic, and other orchestration steps. 

                          Three nodes cover the full range of JWT use cases:

                          • - **JWT Decode** — Parse a JWT and extract header and payload data without verifying the signature. Useful for reading claims early in a workflow to inform downstream decisions.
                          • - **JWT Verify** — Verify a token's signature and validate its claims, including JWKS-based validation for tokens issued by external identity providers.
                          • - **JWT Sign** — Create a new signed JWT for forwarding to upstream services, enabling the gateway to act as a token issuer in service-to-service flows.

                          Together, these nodes simplify realizing complex authentication patterns as part of Datakit flows. You can validate an incoming JWT against a JWKS endpoint, authenticate the consumer, and re-sign a new token for the upstream service — all within a single visual workflow. Multi-IdP routing becomes composable too: decode the token first, inspect the issuer claim, and branch the workflow accordingly. The result is complex auth logic that lives at the gateway and requires no code to maintain.

                          ## Close the security and visibility gap for WebSocket traffic

                          Without native authentication support for WebSockets, teams often rely on workarounds — such as decoupling authentication from WebSocket message processing or handling authentication outside the WebSocket connection. In practice, these approaches introduce architectural complexity, are difficult to audit, and can lead to inconsistent enforcement of security policies across real-time workloads.

                          Kong Gateway 3.14 addresses this with native OIDC and mTLS authentication, plus ACL support, are now enforced at the WebSocket handshake — before a persistent connection is ever established. This enables a consistent authentication and authorization model across both HTTP and WebSocket traffic.

                          Additionally, new WebSocket metrics give platform and operations teams real-time visibility into **active connections, disconnects, handshakes per minute, and handshake failures per minute**. These insights help teams monitor load, detect issues, and operate WebSocket workloads more effectively.

                          Together, these capabilities eliminate the need for authentication workarounds, reduce architectural complexity, and provide the **security, consistency, and visibility** required to run WebSocket workloads — including real-time and AI-driven applications — with confidence at enterprise scale.

                          ## Reshape trust between services with native token exchange

                          When an API Gateway receives an inbound request carrying a user's access token, it needs to call multiple downstream microservices, but forwarding that same token to every service is both a security risk and a scoping problem, since the token was issued for the gateway, not for each individual backend. This can result in an over-privileged service or leaking a broadly-scoped token deep into the backend.

                          Kong Gateway 3.14 adds native support for OAuth 2.0 Token Exchange (RFC 8693) within the OIDC plugin, bringing a standards-based solution to this problem at the gateway layer. Token exchange allows the gateway to accept a token in one format or scope, validate it, and issue a new token tailored for the downstream service, all without touching upstream service code or maintaining custom middleware. Credentials stay out of application logic, rotation happens centrally, and every exchange is governed by the same policy layer as the rest of your API traffic.

                          For teams building microservices, multi-tenant platforms, or federated architectures, this means token transformation, scoping, and delegation become gateway-level concerns: consistent, auditable, and free from the fragility of service-to-service credential management.

                          To learn more about token exchange in Kong API Gateway, please read [this blog](https://konghq.com/blog/engineering/token-exchange-at-the-gateway)this blog.

                          ## Eliminate static credentials with unified cloud-native authentication

                          Over Kong Gateway 3.13 and 3.14, we’ve introduced a unified approach to cloud-native, IAM-based authentication across AWS, Azure, and GCP, effectively eliminating the need for static credentials. This update allows Kong to connect securely to essential components like Postgres databases, Redis caches, and HashiCorp Vault using the native identity systems of each cloud provider. By moving away from static access keys and passwords, enterprise security teams can achieve a consistent security posture across their entire infrastructure, ensuring that service-to-service connections are governed by the same identity models as the rest of their cloud environment.

                          To learn more about cloud-native authentication in Kong API Gateway, please read [this blog](https://konghq.com/blog/engineering/cloud-native-authentication)this blog.

                          ## Monetize API and AI traffic with the Metering & Billing plugin

                          As usage-based pricing becomes the standard model for APIs and AI services, platform teams need metering infrastructure that's accurate, flexible, and decoupled from their analytics stack. Bolting consumption tracking onto existing observability pipelines creates coupling that's hard to unwind — and it rarely gives billing systems the granular, request-level data they need.

                          The new Metering & Billing plugin for Kong Konnect brings real-time metering policies directly to the gateway. Teams can filter which requests get metered via plugin configuration, and define the metering subject and data payload using request headers or query parameters — giving you precise control over what gets tracked and how it maps to a billable event. Whether you're metering API calls by consumer, tracking token consumption for AI traffic, or scoping usage by tenant, the plugin provides the policy definitions needed to feed OpenMeter with clean, structured data at the source.

                          The result is a metering layer that lives where your traffic already flows — no custom middleware, no pipeline dependencies, and no post-processing to reconstruct what happened.

                          ## What's next?

                          The less time your team spends writing glue code, the more time it has to build the platform your developers actually rely on.

                          Ready to get started? Upgrade to Kong Gateway 3.14 and see what's new in [the changelog](https://developer.konghq.com/gateway/changelog/)the changelog. If you want to see these features in action, [request a demo](https://konghq.com/contact-sales)request a demo or try them hands-on in Kong Konnect today.

                          - [Kong Gateway](/blog/tag/kong-gateway)Kong Gateway- [Kong Gateway Enterprise](/blog/tag/kong-enterprise)Kong Gateway Enterprise

                          Table of Contents

                          • Simplify complexity with conditional plugin execution
                          • Build complex authentication policies with JWT nodes for Datakit
                          • Close the security and visibility gap for WebSocket traffic
                          • Reshape trust between services with native token exchange
                          • Eliminate static credentials with unified cloud-native authentication
                          • Monetize API and AI traffic with the Metering & Billing plugin
                          • What's next?

                          ## More on this topic

                          _Videos_

                          ## Kong Gateway 3.8

                          _Videos_

                          ## Announcing Kong Enterprise 2020

                          ## See Kong in action

                          Accelerate deployments, reduce vulnerabilities, and gain real-time visibility. 

                          [Get a Demo](/contact-sales)Get a Demo
                          **Topics**
                          - [Kong Gateway](/blog/tag/kong-gateway)Kong Gateway- [Kong Gateway Enterprise](/blog/tag/kong-enterprise)Kong Gateway Enterprise
                          Amit Shah
                          Director, Product Marketing, Kong
                          Andrew Jessup
                          Director of Product, Gateways and Mesh, Kong
                          Zongmin Li
                          Staff Product Manager, Kong
                          Veena Rajarathna
                          Staff Product Manager, Kong
                          Peter Marton
                          Principal Product Manager, Kong

                          Recommended posts

                          # Beyond Static Routing: Modernizing API Logic with Conditional Policy Execution

                          [Engineering](/blog/tag)EngineeringApril 15, 2026

                          Imagine you have a single Service, order-api . You want to apply a strict rate limit to most traffic, but you want to bypass that limit—or apply a different one—if the request contains a specific X-App-Priority: High header. Previously, you had t

                          Hugo Guerrero
                          [](https://konghq.com/blog/engineering/conditional-policy-execution)

                          # Token Exchange at the Gateway

                          [Engineering](/blog/tag)EngineeringApril 15, 2026

                          How OAuth 2.0 Token Exchange Reshapes Trust Between Services — and Why the API Gateway Is Exactly the Right Place to Enforce It Modern applications don’t run as a single monolithic. They are composed of services — frontend APIs, backend microservi

                          Veena Rajarathna
                          [](https://konghq.com/blog/engineering/token-exchange-at-the-gateway)

                          # No More Static Secrets: Kong Expands Cloud-Native Authentication Support

                          [Engineering](/blog/tag)EngineeringApril 15, 2026

                          How Kong Gateway 3.14 closes the consistency gap in IAM-based authentication across AWS, Azure and GCP — and what it means for your production deployments Starting with 3.13 (which addressed Redis support) and completed in 3.14, Kong now presents

                          Walker Zhao
                          [](https://konghq.com/blog/engineering/cloud-native-authentication)

                          # Kong Gateway 3.9: Extended AI Support and Enhanced Security

                          [Product Releases](/blog/tag)Product ReleasesDecember 20, 2024

                          Today we're excited to announce Kong Gateway 3.9!  Since unveiling Kong Gateway 3.8 at API Summit 2024 just a few months ago, we’ve been busy making important updates and improvements to Kong Gateway. This release introduces new functionality arou

                          Alex Drag
                          [](https://konghq.com/blog/product-releases/kong-gateway-3-9)

                          # What's New in Kong Gateway 3.7?

                          [Product Releases](/blog/tag)Product ReleasesMay 29, 2024

                          We're thrilled to announce the general availability of Kong Gateway 3.7 and Kong Gateway Enterprise 3.7. Along with enhancements and new features for both OSS and enterprise users, this version comes with the general availability of our edge AI Gate

                          Veena Rajarathna
                          [](https://konghq.com/blog/product-releases/kong-gateway-3-7)

                          # Kong Gateway 3.4 for Kong Enterprise and Kong Konnect

                          [Product Releases](/blog/tag)Product ReleasesAugust 14, 2023

                          We're delighted to announce the release of Kong Gateway 3.4 for Kong Enterprise and Kong Konnect , featuring significant enhancements, such as secrets rotation support in secrets management, expanded plugin support in consumer groups, and more. T

                          Tom Brightbill
                          [](https://konghq.com/blog/product-releases/gateway-3-4-enterprise-and-konnect)

                          # Kong Gateway Enterprise 3.9.x.x EOL

                          [Product Releases](/blog/tag)Product ReleasesJanuary 20, 2026

                          As of January 2026, Kong Gateway Enterprise 3.9 will enter its End Of Life (EOL) phase and will no longer be fully supported by Kong. Following this, Kong Gateway Enterprise 3.9 will enter a 12-month sunset support period, focused on helping custo

                          Andrew Jessup
                          [](https://konghq.com/blog/product-releases/kong-gateway-enterprise-3-9-eol)

                          ## Ready to see Kong in action?

                          Get a personalized walkthrough of Kong's platform tailored to your architecture, use cases, and scale requirements.

                          [Get a Demo](/contact-sales)Get a Demo

                          ## step-0

                                    Kong enables the connectivity layer for the agentic era – securely connecting, governing, and monetizing APIs and AI tokens across any model or cloud.

                                    • English
                                    • Japanese
                                    • Frenchcoming soon
                                    • Spanishcoming soon
                                    • Germancoming soon
                                    Everything is 200 OK
                                    © Kong Inc. 2026
                                    Interaction mode