noaa-weather
The NOAA Weather.gov API provides access to National Weather Service forecasts, alerts, observations, radar data, and more for the United States. Use this skill to fetch weather forecasts, active alerts, station observations, and zone data. No API key is required — just a User-Agent header.
What this skill does
# NOAA Weather.gov API The [National Weather Service (NWS) API](https://www.weather.gov/documentation/services-web-api) provides free, open access to weather forecasts, alerts, observations, radar data, and more for the United States. All data is public domain — no API key or account required. > Always check the [official API documentation](https://www.weather.gov/documentation/services-web-api) and [OpenAPI spec](https://api.weather.gov/openapi.json) for the latest endpoint details. --- ## Base URL ``` https://api.weather.gov ``` --- ## Authentication No API key is needed. However, a **User-Agent header is required** on every request to identify your application. ``` User-Agent: (myweatherapp.com, [email protected]) ``` The string can be anything — the more unique to your application, the less likely it will be affected by a security event. Requests without a User-Agent may be blocked. --- ## Key Concepts | Term | Description | |------|-------------| | **Point** | A latitude/longitude coordinate. Use `/points/{lat},{lon}` to resolve it to grid and zone info. | | **Gridpoint** | A 2.5km forecast grid cell identified by a WFO office ID and x,y coordinates. | | **WFO** | Weather Forecast Office — the NWS office responsible for a geographic area (e.g., `DEN`, `OKX`, `LOT`). | | **Zone** | A geographic area used for forecasts and alerts. Types include `land`, `marine`, `forecast`, `fire`, `county`. | | **Station** | An observation station (e.g., `KDEN` for Denver International Airport) that reports current conditions. | | **Alert** | A weather warning, watch, or advisory issued by the NWS (e.g., tornado warning, winter storm watch). | | **SIGMET/AIRMET** | Aviation weather advisories for significant or airmen's meteorological conditions. | | **TAF** | Terminal Aerodrome Forecast — aviation weather forecast for an airport. | | **GeoJSON** | The default response format — standard JSON with geographic feature geometry. | --- ## Core Workflow: Get a Forecast for a Location The API uses a **two-step pattern** to get a forecast: ### Step 1: Resolve coordinates to a grid point ``` GET /points/{latitude},{longitude} ``` This returns metadata including the WFO office, grid coordinates, and URLs for forecasts. ### Step 2: Fetch the forecast using the grid info ``` GET /gridpoints/{wfo}/{gridX},{gridY}/forecast ``` This returns the human-readable 12-hour period forecast (7 days). ### Example (curl) ```bash # Step 1: Get grid info for Denver, CO curl -s -H "User-Agent: MyApp" \ "https://api.weather.gov/points/39.7456,-104.9994" | jq '.properties.forecast' # Returns: "https://api.weather.gov/gridpoints/BOU/63,62/forecast" # Step 2: Get the forecast curl -s -H "User-Agent: MyApp" \ "https://api.weather.gov/gridpoints/BOU/63,62/forecast" | jq '.properties.periods[0]' ``` --- ## Endpoint Reference ### Points / Location Lookup | Endpoint | Description | |----------|-------------| | `GET /points/{lat},{lon}` | Metadata for a coordinate — returns grid info, forecast URLs, timezone, county, zone | | `GET /points/{lat},{lon}/stations` | Nearby observation stations (deprecated — use gridpoint stations instead) | ### Forecasts | Endpoint | Description | |----------|-------------| | `GET /gridpoints/{wfo}/{x},{y}/forecast` | 12-hour period forecast (7-day), human-readable | | `GET /gridpoints/{wfo}/{x},{y}/forecast/hourly` | Hourly forecast (7-day), human-readable | | `GET /gridpoints/{wfo}/{x},{y}` | Raw numerical forecast data (temperature, wind, precip probability, etc.) | | `GET /gridpoints/{wfo}/{x},{y}/stations` | Observation stations within the grid area | ### Alerts | Endpoint | Description | |----------|-------------| | `GET /alerts` | Query alerts (past 7 days) with filters: `status`, `event`, `area`, `zone`, `urgency`, `severity`, `certainty` | | `GET /alerts/active` | All currently active alerts | | `GET /alerts/active/count` | Count of active alerts by area, zone, and region | | `GET /alerts/active/zone/{zoneId}` | Active alerts for a specific zone | | `GET /alerts/active/area/{area}` | Active alerts for a state (2-letter code) or marine area | | `GET /alerts/active/region/{region}` | Active alerts for a marine region | | `GET /alerts/types` | List of recognized alert event types | | `GET /alerts/{id}` | Retrieve a specific alert by its ID | ### Stations & Observations | Endpoint | Description | |----------|-------------| | `GET /stations` | List observation stations; filter by `id`, `state`, `limit` | | `GET /stations/{stationId}` | Metadata for a specific station | | `GET /stations/{stationId}/observations` | Historical observations (paginated) | | `GET /stations/{stationId}/observations/latest` | Most recent observation | | `GET /stations/{stationId}/observations/{time}` | Observation at a specific ISO-8601 timestamp | ### Zones | Endpoint | Description | |----------|-------------| | `GET /zones` | Query zones; filter by `id`, `area`, `type`, `point`, `include_geometry` | | `GET /zones/{type}` | List zones of a specific type (`land`, `marine`, `forecast`, `fire`, `county`) | | `GET /zones/{type}/{zoneId}` | Metadata for a specific zone | | `GET /zones/{type}/{zoneId}/forecast` | Current text forecast for a zone | | `GET /zones/forecast/{zoneId}/observations` | Observations within a forecast zone | | `GET /zones/forecast/{zoneId}/stations` | Stations within a forecast zone | ### Aviation | Endpoint | Description | |----------|-------------| | `GET /stations/{stationId}/tafs` | Terminal Aerodrome Forecasts for a station | | `GET /stations/{stationId}/tafs/{date}/{time}` | Specific TAF | | `GET /aviation/cwsus/{cwsuId}` | Center Weather Service Unit metadata | | `GET /aviation/cwsus/{cwsuId}/cwas` | Center Weather Advisories | | `GET /aviation/sigmets` | Query SIGMETs/AIRMETs with filters | | `GET /aviation/sigmets/{atsu}` | SIGMETs for a specific ATSU | | `GET /aviation/cwsus/{cwsuId}/cwas/{date}/{sequence}` | Specific Center Weather Advisory | | `GET /aviation/sigmets/{atsu}/{date}/{time}` | Specific SIGMET by date and time | ### Radar | Endpoint | Description | |----------|-------------| | `GET /radar/servers` | List of radar servers | | `GET /radar/stations` | List of radar stations; filter by `stationType`, `host` | | `GET /radar/stations/{stationId}` | Specific radar station metadata | | `GET /radar/stations/{stationId}/alarms` | Alarms for a radar station | | `GET /radar/profilers/{stationId}` | Wind profiler data | ### Text Products | Endpoint | Description | |----------|-------------| | `GET /products` | Query text products; filter by `location`, `type`, `start`, `end` | | `GET /products/{productId}` | Specific text product | | `GET /products/types` | List of valid product type codes | | `GET /products/locations` | List of valid product issuance locations | | `GET /products/types/{typeId}` | Products of a given type | | `GET /products/types/{typeId}/locations` | Issuance locations for a product type | | `GET /products/locations/{locationId}/types` | Product types for a location | | `GET /products/types/{typeId}/locations/{locationId}` | Products by type and location | | `GET /products/types/{typeId}/locations/{locationId}/latest` | Latest product by type and location | ### Offices | Endpoint | Description | |----------|-------------| | `GET /offices/{officeId}` | NWS forecast office metadata | | `GET /offices/{officeId}/headlines` | News headlines from an office | | `GET /offices/{officeId}/headlines/{headlineId}` | Specific headline | | `GET /offices/{officeId}/briefing` | Active office briefing | | `GET /offices/{officeId}/weatherstories` | Active weather stories | ### Miscellaneous | Endpoint | Description | |----------|-------------| | `GET /glossary` | Weather terminology definitions | | `GET /points/{lat},{lon}/radio` | NOAA Weather Radio script for a location | | `GET /radio/{callSign}/broadcast` | Weather Radio broadcast script by call sign | --- ## Response Format The default respons
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.