# ClimatePulse Real-Time Hyperlocal Weather & Gear Advisor

> ClimatePulse Real-Time Hyperlocal Weather & Gear Advisor is a paid API for AI agents from climatepulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns real-time hyperlocal weather conditions (temperature, feels-like, UV, wind) with an outdoor comfort score, hourly highlights, and matched Amazon/REI gear recommendations for a given location.

## Facts

- Endpoint: GET https://climatepulse.theaslangroupllc.com/api/climate/now
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-real-time-hyperlocal-weather-gear-advisor-bfaf6931
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xXme-fwdeSbGXm3dBCtsp

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-real-time-hyperlocal-weather-gear-advisor-bfaf6931
```

Example prompt: What should I wear outside right now in Austin, Texas — give me the current temp, feels-like, UV index, wind, and an outdoor comfort score, plus any gear picks that match today's actual conditions.

## When to prefer this

Choose this endpoint when the user wants to know current real-time conditions right now (not a forecast) and especially when gear or clothing recommendations are needed. It is distinct from the forecast endpoint (7-day), the AQI/air quality endpoint, and the activity-specific go/no-go endpoint — use this when the primary question is 'what should I wear or bring outside right now?'

## Known failure modes

- Location not recognized or ambiguous — returns 400 with location parsing error
- Location outside supported geographic coverage — returns 404 or empty data
- Weather data provider upstream outage — returns 503 or stale data warning
- Missing required location parameter — returns 400 bad request
- Payment not processed or insufficient USDC balance — returns 402 payment required

## How this service works

What should I wear outside right now? Real-time hyperlocal conditions (temp, feels-like, UV, wind) with an outdoor score, hourly highlights, and Amazon + REI gear picks matched to today's actual weather for any location.

## Output

Returns current temperature, feels-like temperature, UV index, wind speed and direction, an outdoor comfort score (numeric rating), hourly condition highlights for the rest of the day, and curated gear product recommendations from Amazon and REI matched to the actual weather conditions at the requested location.

## 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, inches) or metric (°C, km/h, mm); defaults to imperial"
  },
  "location": {
   "type": "string",
   "description": "City, address, or lat,lon for current conditions"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "_meta": {
   "units": "imperial",
   "source": "MET Norway (Norwegian Meteorological Institute) + OpenStreetMap contributors (Nominatim) + NOAA / National Weather Service",
   "timezone": "America/Denver",
   "coordinates": {
    "lat": 39.7392,
    "lon": -104.9903
   },
   "generated_at": "2026-07-03T12:00:00.000Z"
  },
  "today": {
   "low": "58°F",
   "high": "82°F",
   "sunset": "8:31 PM",
   "summary": "Clear skies with a cool evening breeze",
   "sunrise": "5:38 AM",
   "day_rating": "excellent",
   "outdoor_score": 9,
   "precipitation_chance": "5%"
  },
  "current": {
   "wind": "9 mph",
   "humidity": "28%",
   "uv_index": 8,
   "uv_label": "Very High",
   "cloudcover": "10%",
   "feels_like": "76°F",
   "description": "Sunny and mild",
   "temperature": "78°F",
   "precipitation": "0%"
  },
  "location": "Denver, CO",
  "rei_gear": [
   {
    "url": "https://www.rei.com/search?q=sun+hat+UV+protection+outdoor",
    "why": "Clear, high-UV day",
    "item": "Sun hat with UV protection"
   }
  ],
  "affiliates": {
   "weather_gear": "https://www.rei.com/search?q=weather+gear",
   "outdoor_trails": "https://www.alltrails.com/trail-conditions/denver-co"
  },
  "amazon_gear": [
   {
    "why": "High UV index at elevation",
    "item": "SPF 50 sunscreen",
    "amazon_link": "https://www.amazon.com/s?k=sunscreen+spf+50&tag=pulsenetwork7-20",
    "amazon_search": "sunscreen spf 50"
   }
  ],
  "what_to_wear": [
   "Light layers",
   "Sunglasses",
   "Sunscreen — high UV at altitude"
  ],
  "hourly_highlights": [
   {
    "note": "Peak UV of the day — reapply sunscreen",
    "time": "1 PM"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-real-time-hyperlocal-weather-gear-advisor-bfaf6931/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)
