get_weather_by_datetime_range
Retrieve weather data for a specific city within a defined date range using the Open-Meteo API. Input city name in English, start date, and end date in YYYY-MM-DD format to get the weather information.
Instructions
Get weather information for a specified city between start and end dates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | The name of the city to fetch weather information for, PLEASE NOTE English name only, if the parameter city isn't English please translate to English before invoking this function. | |
end_date | Yes | End date in format YYYY-MM-DD , please follow ISO 8601 format | |
start_date | Yes | Start date in format YYYY-MM-DD, please follow ISO 8601 format |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "The name of the city to fetch weather information for, PLEASE NOTE English name only, if the parameter city isn't English please translate to English before invoking this function.",
"title": "City",
"type": "string"
},
"end_date": {
"description": "End date in format YYYY-MM-DD , please follow ISO 8601 format",
"title": "End Date",
"type": "string"
},
"start_date": {
"description": "Start date in format YYYY-MM-DD, please follow ISO 8601 format",
"title": "Start Date",
"type": "string"
}
},
"required": [
"city",
"start_date",
"end_date"
],
"title": "get_weather_by_datetime_rangeArguments",
"type": "object"
}