weather_route
ActiveTool of Ready APIs
Weather conditions along a polyline route. Pass up to 20 legs, each a lat/lon waypoint with an optional ISO 8601 departs_at. Legs departing within 2 hours (or with no time) return current conditions; future legs return the daily forecast for that date. For trucking, road-trip, and delivery-window planning.
Parameters schema
{
"type": "object",
"required": [
"legs"
],
"properties": {
"legs": {
"type": "array",
"items": {
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"label": {
"type": "string",
"description": "Optional human label for the waypoint."
},
"departs_at": {
"type": "string",
"description": "Optional ISO 8601 departure time (UTC)."
}
},
"additionalProperties": false
},
"maxItems": 20,
"minItems": 1,
"description": "Ordered waypoints along the route."
},
"units": {
"enum": [
"imperial",
"metric"
],
"type": "string",
"default": "imperial"
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Ready APIs
https://github.com/ReadyAPIs-com/readyapis
1/7 registries