# ClimatePulse Event Weather Brief

> ClimatePulse Event Weather Brief is a paid API for AI agents from climatepulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Generates a comprehensive go/no-go weather brief for any outdoor event date and location, including historical climate odds, live forecast, contingency plan, and heat-safety guidance

## Facts

- Endpoint: GET https://climatepulse.theaslangroupllc.com/api/climate/event-brief
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-event-weather-brief-cfb94825
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T0XuQaX448PtcAV-IRDLv

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 climatepulse-event-weather-brief-cfb94825
```

Example prompt: Can you pull a full weather brief for my outdoor wedding at Napa Valley, California on June 14, 2025 — I need rain odds, heat risk, a go/no-go timeline, and a heat-safety plan for 200 guests?

## When to prefer this

Use this endpoint when planning or advising on any outdoor event (wedding, marathon, festival, corporate event) and a comprehensive risk assessment is needed — including historical climate odds, live forecast integration, actionable go/no-go timelines, and safety plans. Prefer over generic weather APIs when event-specific guidance, contingency planning, and heat-safety recommendations are required.

## Known failure modes

- Date too far in the future for any forecast data — historical odds still returned but no live forecast
- Invalid or unrecognizable location — API returns location parsing error
- Missing required parameters (date or location) — returns 400-level error
- Location outside NASA POWER data coverage — reduced historical accuracy
- Network timeout fetching live MET Norway forecast — brief generated from historical data only

## How this service works

Premium event-weather brief for any date and location worldwide. Rain, heat, frost, wind, and extreme-heat odds computed in code from 10 years of actual NASA POWER reanalysis rows (counted, not model-estimated), the live 10-day MET Norway forecast when the date is in range, a dated go/no-go decision timeline, contingency plan, schedule guidance, and heat-safety plan for weddings, festivals, marathons, and any outdoor event.

## Output

A structured event weather brief containing: historical climate odds (rain, heat, frost, wind, extreme heat) computed from 10 years of NASA POWER reanalysis data; live MET Norway 10-day forecast if the date is within range; a dated go/no-go decision timeline; a contingency plan; schedule guidance; and a heat-safety plan tailored to the event type (wedding, marathon, festival, etc.)

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "date",
  "location"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "Event date (YYYY-MM-DD)"
  },
  "lang": {
   "type": "string",
   "description": "Response language code (e.g. es, fr, de); defaults to English"
  },
  "units": {
   "type": "string",
   "description": "imperial (default) or metric"
  },
  "location": {
   "type": "string",
   "description": "City, address, or lat,lon of the event venue"
  },
  "event_type": {
   "type": "string",
   "description": "Event type — tailors the plan (wedding, marathon, outdoor-festival, camping, …)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "sources": [
   {
    "source": "MET Norway (Norwegian Meteorological Institute)",
    "licence": "CC BY 4.0"
   },
   {
    "source": "NASA POWER (MERRA-2 / GEOS reanalysis)"
   }
  ],
  "location": "Napa, CA, United States",
  "disclaimer": "Historical odds are climatology, not a forecast. Recheck at each decision point.",
  "event_date": "2026-09-15",
  "event_type": "wedding",
  "live_forecast": {
   "reason": "event is 65 days out — beyond the 10-day forecast window; climatology only",
   "available": false
  },
  "risk_assessment": {
   "cold": "low",
   "heat": "moderate",
   "rain": "low",
   "wind": "low",
   "overall": "moderate"
  },
  "contingency_plan": [
   "Book shade structures now",
   "Schedule ceremony after 5pm"
  ],
  "headline_verdict": "A historically dry, warm date — plan for afternoon heat, not rain.",
  "historical_stats": {
   "temps": {
    "p10_high": 75.2,
    "p90_high": 93.4,
    "record_low": 45.9,
    "average_low": 52.3,
    "record_high": 101.8,
    "average_high": 84.1
   },
   "data_source": "NASA POWER daily reanalysis (MERRA-2/GEOS) — 10 years, ±3-day window, 70 sampled days",
   "unavailable": [
    "thunderstorm probability — NASA POWER publishes no weather code, so thunder days are unmeasured (not zero)"
   ],
   "probabilities_pct": {
    "frost": 0,
    "windy": 4,
    "hot_day": 27,
    "any_rain": 6,
    "extreme_heat": 3,
    "thunderstorm": null,
    "significant_rain": 1
   },
   "exact_date_by_year": [
    {
     "low": 54.1,
     "high": 88.2,
     "year": 2025,
     "conditions": null,
     "precipitation": 0
    }
   ]
  },
  "decision_timeline": {
   "decision_points": [
    {
     "date": "2026-09-05",
     "milestone": "10-day forecast window opens — first model signal, low confidence",
     "days_before_event": 10
    }
   ],
   "forecast_status": "beyond_forecast_range",
   "days_until_event": 65
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-event-weather-brief-cfb94825/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from climatepulse.theaslangroupllc.com](https://www.zero.xyz/host/climatepulse.theaslangroupllc.com/llms.txt)
