# DYOE Weather — Current Conditions & 3-Day Forecast

> DYOE Weather — Current Conditions & 3-Day Forecast is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current weather conditions plus a 3-day forecast for any city, optimized for travel and planning agents.

## Facts

- Endpoint: GET https://agents.dyoeway.org/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dyoe-weather-current-conditions-3-day-forecast-40a8c21b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pCoUCxGvhEKsePume4YVP

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 dyoe-weather-current-conditions-3-day-forecast-40a8c21b
```

Example prompt: What's the weather like in Atlanta right now, and what's the 3-day forecast — I want current conditions plus what to expect over the next few days.

## When to prefer this

Use this endpoint when an AI agent needs current weather conditions and a short-term (3-day) forecast for a named city, particularly for travel planning, itinerary generation, or situational awareness tasks. Prefer this over general web search when structured, machine-readable weather data is needed quickly and reliably.

## Known failure modes

- City name not recognized or misspelled — returns error or empty result
- City parameter missing — request fails with bad input error
- Upstream weather data provider unavailable — may return stale or error response
- Ambiguous city name (e.g. 'Springfield') may return results for the wrong location

## How this service works

Current conditions + 3-day forecast for any city — for travel & planning agents. Input: ?city=Atlanta

## Output

Returns current weather conditions (temperature, description, humidity, etc.) alongside a 3-day forecast for the specified city, including expected highs, lows, and conditions per day.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "additionalProperties": false,
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http",
     "type": "string"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "city": {
       "type": "string",
       "description": "City name"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyoe-weather-current-conditions-3-day-forecast-40a8c21b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
