# Agent Pulse Weather

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

Returns live current weather and forecast data for a given location, payable per-request in USDC via x402 with no API key required.

## Facts

- Endpoint: GET https://agent-pulse.annushka1190.workers.dev/v1/weather
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-pulse-weather-82c2f3a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u7keVtPSVKtYqcQFruEDQ

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-82c2f3a3
```

Example prompt: What's the current weather and forecast for San Francisco right now? Pull it fresh without using any stored keys — just pay per request.

## When to prefer this

Choose this endpoint when you need live weather data in an agent pipeline with no prior account setup or API key provisioning, and when per-request USDC micropayments via x402 are acceptable. Ideal for autonomous AI agents that need just-in-time weather data without managing subscriptions.

## Known failure modes

- Missing or invalid location query parameter returns an error
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required
- Unsupported location name or geocoding failure may return no results
- Rate limiting or worker downtime returns 5xx errors

## 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 containing current weather conditions (temperature, sky conditions, humidity, wind, etc.) and a short-term forecast for the queried location, returned as structured data.

## 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-82c2f3a3/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)
