# ClimatePulse Hyperlocal Current Conditions

> ClimatePulse Hyperlocal Current Conditions is a paid API for AI agents from climatepulse-six.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns real-time hyperlocal weather conditions with gear/clothing recommendations for the current moment

## Facts

- Endpoint: GET https://climatepulse-six.vercel.app/api/climate/now
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-hyperlocal-current-conditions-6a587202
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UvXGwmbmFiQ1Vp_mRkNWy

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-hyperlocal-current-conditions-6a587202
```

Example prompt: What are the current weather conditions at my location in Austin, Texas, and what gear or clothing should I bring right now?

## When to prefer this

Choose ClimatePulse when you need hyperlocal current-moment weather data paired with actionable gear or clothing recommendations, rather than raw forecasts or historical data. Ideal when the user wants immediate, practical guidance on what to bring or wear based on conditions right now.

## Known failure modes

- Location not recognized or ambiguous — returns 400 or empty result
- Location outside supported coverage area — may return null or error
- Payment not processed (x402) — returns 402 Payment Required
- Upstream weather data unavailable — returns 503 or stale data warning
- Rate limit exceeded — returns 429 Too Many Requests

## 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 live hyperlocal weather metrics (temperature, humidity, wind, precipitation, sky conditions) alongside practical gear and clothing recommendations tailored to the current conditions at the requested 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": {
      "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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-hyperlocal-current-conditions-6a587202/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)
