action graphhopper_get_route_info { label: "Coverage information" description: "Use this to find out details about the supported vehicle profiles and features, or if you just need to ping the server.\n" provider: graphhopper method: GET path: "/route/info" encoding: json output: { type: "object" description: "Information about the server and the geographical area that it covers." properties: { bbox: { type: "string" description: "The bounding box of the geographical area covered by this GraphHopper instance. Format: `\"minLon,minLat,maxLon,maxLat\"\n" } features: { type: "object" description: "The supported features, such as elevation, per vehicle profile.\n" } version: { type: "string" description: "The version of the GraphHopper server that provided this response. This is not related to the API version.\n" } } } }