# ClimatePulse Severe Weather Threat Assessment

> ClimatePulse Severe Weather Threat Assessment is a paid API for AI agents from climatepulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns active severe weather alerts, threat level, safety timeline, preparedness checklist, shelter guidance, and emergency contacts for a given location.

## Facts

- Endpoint: GET https://climatepulse.theaslangroupllc.com/api/climate/severe
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-severe-weather-threat-assessment-fd97682d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N_TSly0ZkbUDwSYHoBqxd

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-severe-weather-threat-assessment-fd97682d
```

Example prompt: There's supposedly a severe storm heading toward Austin, TX right now — can you check if there are active weather alerts, tell me how serious the threat is, and give me a safety timeline and shelter guidance?

## When to prefer this

Choose this endpoint when a user needs urgent, actionable severe weather safety information for a specific location, including threat assessment, emergency preparedness steps, and shelter guidance — not just a forecast. Prefer over general forecast endpoints when the concern is an active or imminent hazard event (storm, tornado, hurricane, flood, etc.).

## Known failure modes

- Location not recognized or unresolvable — returns 400 with invalid location error
- No active severe weather alerts for the location — returns result with empty alerts and low threat level
- Service unavailable or upstream weather data provider down — returns 503
- Payment not provided or invalid — returns 402 Payment Required
- Rate limit exceeded — returns 429

## How this service works

Should I be worried about the storm headed this way? Severe weather threat assessment — active alerts, threat level, a safety timeline, a preparedness checklist, shelter guidance, and emergency contacts for any location.

## Output

Returns active severe weather alerts for the location, an assessed threat level, a safety timeline indicating when conditions worsen, a step-by-step preparedness checklist, shelter-in-place or evacuation guidance, and local emergency contact numbers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language code (e.g. es, fr, de); defaults to English"
  },
  "units": {
   "type": "string",
   "description": "imperial (°F, mph) or metric (°C, km/h); defaults to imperial"
  },
  "location": {
   "type": "string",
   "description": "City, address, or lat,lon to assess for severe weather"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "_meta": {
   "units": "imperial",
   "source": "MET Norway (Norwegian Meteorological Institute) + OpenStreetMap contributors (Nominatim) + NOAA / National Weather Service + Tavily (web search)",
   "coordinates": {
    "lat": 27.9506,
    "lon": -82.4572
   },
   "generated_at": "2026-07-03T12:00:00.000Z"
  },
  "location": "Tampa, FL",
  "rei_gear": [
   {
    "url": "https://www.rei.com/search?q=emergency+survival+kit+outdoor",
    "why": "Elevated storm threat",
    "item": "Emergency survival kit"
   }
  ],
  "timeline": [
   {
    "window": "Next 24h",
    "description": "Rain bands increasing through the evening, winds picking up overnight"
   }
  ],
  "affiliates": {
   "emergency_kit": "https://www.amazon.com/s?k=emergency+preparedness+kit",
   "home_security": "https://simplisafe.com/"
  },
  "disclaimer": "Monitor weather.gov and your local emergency management office for official warnings. Conditions can change rapidly.",
  "amazon_gear": [
   {
    "why": "Power may be interrupted",
    "item": "Battery/hand-crank weather radio",
    "amazon_link": "https://www.amazon.com/s?k=emergency+weather+radio&tag=pulsenetwork7-20",
    "amazon_search": "emergency weather radio"
   }
  ],
  "threat_level": "elevated",
  "active_alerts": [
   {
    "type": "Tropical Storm Watch",
    "source": "National Weather Service",
    "headline": "Tropical Storm Watch issued for the coastal Tampa Bay area"
   }
  ],
  "primary_threat": "Tropical storm system approaching with heavy rain and gusty wind",
  "safety_actions": [
   "Secure loose outdoor items",
   "Charge phones and power banks now",
   "Review your evacuation route"
  ],
  "shelter_guidance": "Stay indoors away from windows once winds pick up; move to an interior room if a tornado warning is issued.",
  "when_to_evacuate": null,
  "emergency_contacts": {
   "weather_radio": "162.400–162.550 MHz",
   "local_emergency": "911",
   "emergency_management": "1-800-621-3362"
  },
  "forecast_conditions": {
   "uv_index": 6,
   "wind_max": "35 mph",
   "description": "Increasing clouds and rain bands",
   "temperature": "85°F",
   "precipitation": "70%"
  },
  "preparedness_checklist": [
   {
    "item": "Bottled water (1 gal/person/day, 3-day supply)",
    "urgency": "today",
    "amazon_link": "https://www.amazon.com/s?k=emergency+water+storage&tag=pulsenetwork7-20",
    "amazon_search": "emergency water storage"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-severe-weather-threat-assessment-fd97682d/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)
