action ljaero_obstacles_by_route_us_v1_obstacles_route_query_post { label: "Retrieve obstacles found along a route." description: "Retrieve obstacles found along a route. Request body parameters are:\n* route: [GeoJSON Linestring](https://www.rfc-editor.org/rfc/rfc7946.html#appendix-A) defining the route. Max allowed length is 50 km." provider: ljaero method: POST path: "/us/v1/obstacles/route-query" encoding: json input: { type: "object" properties: { route: { type: "object" } "x-api-key": { type: "string" } } required: ["route"] additionalProperties: false } output: { type: "object" required: ["found"] properties: { found: { type: "object" } } } }