Home / Platform / API Gateway
Gateway · Programmable

An edge layer that speaks nodejs.

Schema-validating, policy-aware, and built to terminate requests as close to your node js handlers as possible.

Request a Technical Demo →
PoP · 38Throughput · 4.8 TbpsSchemas · OpenAPI 3.1Auth · OIDC + mTLS
SCHEMA

Validate at the edge

Reject malformed payloads before they touch a node-js worker.

RATE

Per-route limits

Token-bucket and sliding-window strategies, enforced per region.

AUTH

OIDC + mTLS

Verified at the gateway, propagated as workload identity downstream.

POLICY

Programmable

Express request transforms in TypeScript — no DSL required.

CACHE

Edge cache

Stale-while-revalidate for read-heavy nodejs endpoints.

CHAOS

Fault injection

Inject latency or errors into a slice of traffic for resilience drills.

gateway.route("/v1/orders/:id")
  .schema(OrderSchema)
  .auth("oidc")
  .rateLimit({ rps: 200, burst: 400 })
  .cache("public, s-maxage=15")
  .forward("orders-api")