Get one Kong route
get_routeRetrieve a single Kong route's paths, methods, hosts, protocols, and owning service by route name or reference. Not for URL paths.
Instructions
Retrieves a single Kong route and the service it is attached to.
USE WHEN: you already know the route name or have a route: reference from another tool,
and need its paths, methods, hosts, protocols, or which service handles it.
DO NOT USE with a URL path such as "/payments" -- route names and route paths are different things, and this tool takes the name. Use find_route_by_path to go from a path to a route.
RETURNS: route with ref, paths, methods, hosts, protocols, stripPath, and
serviceRef naming the owning service.
LIMITATIONS: does not return plugins. A route can look entirely correct here while being unauthenticated -- call list_plugins_for_route to see what actually applies to it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| route | Yes | Route name, id, or a `route:<name>` reference. Example: "payments-prod" or "route:payments-prod". This is NOT a URL path -- for a path like /payments use find_route_by_path. |