get-minutely-forecast
Retrieve minute-by-minute precipitation forecasts for the next hour using location data. Input a city name or coordinates to access detailed weather predictions for up to 60 minutes.
Instructions
Get minute-by-minute precipitation forecast for next hour
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of minutes to forecast (1-60, default: 60) | |
location | Yes | City name (e.g., 'New York') or coordinates (e.g., 'lat,lon') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Number of minutes to forecast (1-60, default: 60)",
"maximum": 60,
"minimum": 1,
"type": "number"
},
"location": {
"description": "City name (e.g., 'New York') or coordinates (e.g., 'lat,lon')",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}