Routes API
Routes tell the Proxy Gateway how to inject credentials into outbound API requests. All endpoints are nested under/secrets/routes and require tenant-level authentication.
Create Route
Examples
List Routes
Update Route
Delete Route
Route Matching
When the proxy receives a request, it matches routes in priority order (highest first). The first matching route wins. A route matches when:hostPatternmatches the target host (supports*wildcards)pathPatternmatches the request path (supports/*glob)methodmatches the HTTP method (or*for any)enabledistrue
Priority Example
api.example.com/v2/trading/orders matches the priority-10 route.
A request to api.example.com/v1/data matches the priority-0 fallback.