# ClearCheck Weather – US Point Forecast with NWS Alert Verdict

> ClearCheck Weather – US Point Forecast with NWS Alert Verdict is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns an NWS point forecast plus any active watches, warnings, and advisories for a given lat/lon, along with a CLEAR / ADVISORY / WARNING safety verdict.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/weather
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-weather-us-point-forecast-with-nws-alert-verdict-4ced0f3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OAHYCA05u48rQbD2lw45u

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability clearcheck-weather-us-point-forecast-with-nws-alert-verdict-4ced0f3d
```

Example prompt: What's the weather forecast and are there any active NWS alerts at latitude 39.7456 and longitude -97.0892? Give me the next 4 forecast periods and tell me if conditions are CLEAR, ADVISORY, or WARNING.

## When to prefer this

Choose this endpoint when you need both an NWS point forecast AND an aggregated safety verdict (CLEAR/ADVISORY/WARNING) in a single call for a US location specified by coordinates. It is preferable over raw NWS API calls because it bundles alert checking and verdict classification, saving multiple round-trips. Best suited for go/no-go decisions, safety screening, or situational awareness workflows where a simple verdict label is needed alongside forecast details.

## Known failure modes

- Coordinates outside the contiguous US (NWS does not cover all territories) — returns an error or empty forecast
- Invalid or out-of-range lat/lon values — schema validation error
- NWS API temporarily unavailable — upstream timeout or 503
- Network error connecting to render-hosted service — 502 or connection timeout
- Missing required lat or lon query parameters — 400 bad request

## How this service works

US point forecast plus any active NWS watches, warnings and advisories, with a CLEAR / ADVISORY / WARNING verdict.

## Output

Returns a structured JSON object with: a CLEAR/ADVISORY/WARNING verdict and the reasons behind it; a forecast array with up to N periods each containing name, start time, temperature, temperature unit, wind, precipitation chance, short forecast, and detailed forecast; an activeAlerts array and alert count; resolved location info including city, state, timezone, and forecast office; data source attribution; and a retrievedAt timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lat",
      "lon"
     ],
     "properties": {
      "lat": {
       "type": "number",
       "description": "Latitude, decimal degrees"
      },
      "lon": {
       "type": "number",
       "description": "Longitude, decimal degrees"
      },
      "periods": {
       "type": "integer",
       "description": "Forecast periods to return, default 4"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "forecast": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "wind": {
          "type": "string"
         },
         "startsAt": {
          "type": "string"
         },
         "isDaytime": {
          "type": "boolean"
         },
         "temperature": {
          "type": "integer"
         },
         "shortForecast": {
          "type": "string"
         },
         "temperatureUnit": {
          "type": "string"
         },
         "detailedForecast": {
          "type": "string"
         },
         "precipitationChancePct": {
          "type": "integer"
         }
        }
       }
      },
      "location": {
       "type": "object",
       "properties": {
        "lat": {
         "type": "number"
        },
        "lon": {
         "type": "number"
        },
        "city": {
         "type": "string"
        },
        "state": {
         "type": "string"
        },
        "timeZone": {
         "type": "string"
        },
        "forecastOffice": {
         "type": "string"
        }
       }
      },
      "alertCount": {
       "type": "integer"
      },
      "disclaimer": {
    
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-weather-us-point-forecast-with-nws-alert-verdict-4ced0f3d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
