# Agent Pulse Weather Forecast

> Agent Pulse Weather Forecast is a paid API for AI agents from agent-pulse.annushka1190.workers.dev, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Returns current weather conditions and multi-day forecast data for a given location, payable per-request in USDC via x402 protocol

## Facts

- Endpoint: GET https://agent-pulse.annushka1190.workers.dev/v1/forecast
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-pulse-weather-forecast-1c208444
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R0J8OP3RjIcNL_kAyRuVF

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 agent-pulse-weather-forecast-1c208444
```

Example prompt: What's the weather forecast for London over the next few days — current conditions and the upcoming outlook?

## When to prefer this

Choose this endpoint when you need weather forecast data in a pay-per-use, keyless context — ideal for AI agents operating without pre-registered API credentials, using USDC micropayments via the x402 protocol. Prefer it over subscription-based weather APIs when you want zero account setup and per-request billing transparency.

## Known failure modes

- Missing or invalid location query parameter returns error response
- Payment failure via x402 protocol results in 402 Payment Required
- Invalid query parameters return schema validation error
- Upstream weather data provider outage may cause service unavailability
- Malformed request returns non-ok JSON response

## How this service works

Live ops data for AI agents: current weather and forecast, Ethereum/Base gas price, and ENS name resolution. Pay-per-request USDC via x402. No API keys, no accounts.

## Output

A JSON response with ok:true and weather payload including current conditions (temperature, humidity, wind, description) and multi-day forecast data for the requested location, delivered without requiring API keys or account registration — billed at $0.006 USDC per call via x402.

## 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": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-pulse-weather-forecast-1c208444/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-pulse.annushka1190.workers.dev](https://www.zero.xyz/host/agent-pulse.annushka1190.workers.dev/llms.txt)
