# ClimatePulse 7-Day Hyperlocal Forecast

> ClimatePulse 7-Day Hyperlocal Forecast is a paid API for AI agents from climatepulse-six.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns a 7-day hyperlocal weather forecast with planning insights for any location, optimized for travel and outdoor agents.

## Facts

- Endpoint: GET https://climatepulse-six.vercel.app/api/climate/forecast
- 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-7-day-hyperlocal-forecast-3ade29a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vOdPEN6KLFImkskcXQXoj

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-7-day-hyperlocal-forecast-3ade29a3
```

Example prompt: Can you pull the 7-day hyperlocal forecast for Asheville, NC? I need day-by-day conditions with planning insights so I can figure out the best days for outdoor activities.

## When to prefer this

Choose this endpoint when you need multi-day forward-looking weather data (up to 7 days) with planning intelligence for travel routing, outdoor scheduling, or itinerary building — rather than current conditions or historical data. Prefer over generic weather APIs when planning insights per day are needed alongside raw forecast data.

## Known failure modes

- Unknown or ambiguous location returns a 400 error
- Location outside supported coverage area returns an error or empty forecast
- Service unavailable returns a 5xx error
- Payment not processed returns a 402 error
- Malformed location parameter returns a validation error

## How this service works

Should I pack a rain jacket for next week? 7-day hyperlocal forecast with a per-day outdoor score (1-10), best/worst day picks, a packing list, and Amazon + REI gear recommendations for travel and outdoor-planning agents.

## Output

A structured 7-day weather forecast including daily temperature highs/lows, precipitation probability, wind, and AI-ready planning insights for each day at the specified location.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "location"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "description": "Number of days ahead to forecast (1–7, default 7)"
      },
      "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 forecast"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-7-day-hyperlocal-forecast-3ade29a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from climatepulse-six.vercel.app](https://www.zero.xyz/host/climatepulse-six.vercel.app/llms.txt)
