# ClimatePulse Activity Weather Rater

> ClimatePulse Activity Weather Rater is a paid API for AI agents from climatepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns an activity-specific go/no-go rating (1-10) for outdoor activities like hiking, skiing, surfing, cycling, camping, running, golf, beach, or fishing, along with a gear checklist and alternative dates if conditions are poor.

## Facts

- Endpoint: GET https://climatepulse.theaslangroupllc.com/api/climate/activity
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-activity-weather-rater-a8cd14e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7vlUSP9rzkeFElpriIeH1

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-activity-weather-rater-a8cd14e7
```

Example prompt: Is this Saturday good for hiking near Denver? Give me a go/no-go rating and tell me what gear to bring — and suggest better days if conditions are bad.

## When to prefer this

Use this endpoint when a user wants to know if a specific outdoor activity (hiking, skiing, surfing, cycling, camping, running, golf, beach, or fishing) is a good idea on a particular date and location, and needs actionable go/no-go guidance with gear recommendations rather than raw weather data. Prefer this over generic forecast endpoints when the user's goal is activity-specific suitability and planning.

## Known failure modes

- Invalid or unrecognized activity type returns an error
- Location not found or ambiguous location returns an error
- Date too far in the future may lack forecast data
- Missing required parameters (activity or location) returns a 400-style error
- API unavailable or weather data source outage returns a 5xx error

## How this service works

Is Saturday good for hiking near Denver? Activity-specific go/no-go rating (1-10) for hiking, skiing, surfing, cycling, camping, running, golf, beach, or fishing, with a gear checklist and alternative dates if conditions are bad.

## Output

A numeric go/no-go rating from 1-10 for the specified outdoor activity at the given location and date, a gear checklist tailored to the forecast conditions, and suggested alternative dates if the rating is low.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "activity",
  "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"
  },
  "activity": {
   "type": "string",
   "description": "Activity type: hiking, skiing, surfing, cycling, camping, running, golf, beach, or fishing"
  },
  "location": {
   "type": "string",
   "description": "City, address, or lat,lon for the activity"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-04",
  "_meta": {
   "units": "imperial",
   "source": "MET Norway (Norwegian Meteorological Institute) + OpenStreetMap contributors (Nominatim) + NOAA / National Weather Service + Tavily (web search)",
   "coordinates": {
    "lat": 39.7392,
    "lon": -104.9903
   },
   "generated_at": "2026-07-03T12:00:00.000Z"
  },
  "activity": "hiking",
  "location": "Denver, CO",
  "affiliates": {
   "weather_gear": "https://www.rei.com/search?q=weather+gear",
   "outdoor_trails": "https://www.alltrails.com/trail-conditions/denver-co"
  },
  "conditions": {
   "wind": "8 mph",
   "summary": "Sunny, mild, and dry — excellent hiking conditions",
   "go_score": 8,
   "uv_index": 9,
   "go_rating": "go",
   "temperature": "76°F",
   "precipitation": "0%"
  },
  "safety_notes": [
   "High UV — sun protection is essential above 5,000 ft"
  ],
  "activity_notes": [
   "Trails should be dry after a clear week",
   "Afternoon thunderstorm risk is low but check radar after 3 PM at elevation"
  ],
  "gear_checklist": [
   {
    "item": "Hiking boots",
    "rei_url": "https://www.rei.com/search?q=hiking+boots+trail",
    "priority": "essential",
    "amazon_link": "https://www.amazon.com/s?k=hiking+boots+trail&tag=pulsenetwork7-20",
    "amazon_search": "hiking boots trail"
   },
   {
    "item": "Sunscreen SPF 50",
    "rei_url": null,
    "priority": "essential",
    "amazon_link": "https://www.amazon.com/s?k=sunscreen+spf+50&tag=pulsenetwork7-20",
    "amazon_search": "sunscreen spf 50"
   }
  ],
  "best_time_of_day": "Morning start, off the summit by early afternoon",
  "alternative_dates": [
   {
    "date": "2026-07-05",
    "why_better": "Similar conditions with lighter wind"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-activity-weather-rater-a8cd14e7/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)
