# SiteSignal Live Weather Snapshot

> SiteSignal Live Weather Snapshot is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns current weather conditions and a compact 3-day forecast for any public coordinates using Open-Meteo, with configurable units and source evidence.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/weather
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-live-weather-snapshot-1e077321
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WNBrLRqEitbUJvd--oBzL

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 sitesignal-live-weather-snapshot-1e077321
```

Example prompt: What's the current weather and 3-day forecast for latitude 48.8566, longitude 2.3522 — give me the temperature in Celsius and wind speed in km/h.

## When to prefer this

Choose this endpoint when you need a quick, coordinate-precise current-conditions and short-range (3-day) weather snapshot with configurable units and source attribution, without needing a full-featured weather API account. Ideal for agents enriching location data, validating outdoor conditions, or adding weather context to geospatial workflows.

## Known failure modes

- Missing latitude or longitude returns a validation error
- Latitude out of -90 to 90 or longitude out of -180 to 180 range returns a 400 error
- Invalid unit enum values (e.g. unsupported temperatureUnit) return a validation error
- Upstream Open-Meteo API unavailability may cause a 502 or timeout
- Payment not processed (x402) blocks access to the endpoint

## How this service works

Return current conditions and a compact three-day forecast for public coordinates from Open-Meteo, with units, timestamps, and source evidence.

## Output

Returns a JSON object containing current weather conditions (temperature, wind speed, precipitation, and related metrics) alongside a compact 3-day forecast for the requested coordinates, with all values in the requested units, UTC timestamps, and evidence of the Open-Meteo data source.

## 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": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "latitude": {
       "type": "number",
       "maximum": 90,
       "minimum": -90
      },
      "longitude": {
       "type": "number",
       "maximum": 180,
       "minimum": -180
      },
      "windSpeedUnit": {
       "enum": [
        "kmh",
        "mph",
        "ms",
        "kn"
       ],
       "type": "string",
       "default": "kmh"
      },
      "temperatureUnit": {
       "enum": [
        "celsius",
        "fahrenheit"
       ],
       "type": "string",
       "default": "celsius"
      },
      "precipitationUnit": {
       "enum": [
        "mm",
        "inch"
       ],
       "type": "string",
       "default": "mm"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sitesignal-live-weather-snapshot-1e077321/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
