get_weather_forecast
Retrieve weather forecast for any U.S. ZIP code using the National Weather Service API. Input a ZIP code to receive accurate weather predictions tailored to your location.
Instructions
Retrieves weather forecast for a given ZIP code using NWS API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
zip_code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"zip_code": {
"type": "string"
}
},
"required": [
"zip_code"
],
"type": "object"
}