# NetIntel Weather — Current Conditions & 3-Day Forecast

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

Returns live weather conditions plus a 3-day forecast for any city name or lat/lon coordinates, including temperature, humidity, wind, precipitation, cloud cover, and a plain-language condition summary.

## Facts

- Endpoint: GET https://netintel.dev/weather/current
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-weather-current-conditions-3-day-forecast-7a390722
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rLEHFHoD6QEXB3mA1KxPg

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 netintel-weather-current-conditions-3-day-forecast-7a390722
```

Example prompt: What's the current weather in London right now — temperature, humidity, wind, and a 3-day forecast — in metric units?

## When to prefer this

Choose this endpoint when you need live weather data worldwide without managing your own API keys, when you want both current conditions and a short-term forecast in one call, or when you need automatic city-name geocoding. Prefer it over raw weather APIs when paying per-call (x402) is acceptable and you want a clean, normalized JSON response with plain-language condition labels already computed.

## Known failure modes

- City name cannot be geocoded — returns error or empty location
- Both city and coordinates omitted — missing required input
- Invalid coordinate range (lat outside -90..90 or lon outside -180..180)
- Upstream Open-Meteo API unavailable — service may return error or stale cache
- Misspelled city name may resolve to wrong location or fail
- Units value other than 'metric' or 'imperial' may be ignored or rejected

## How this service works

Live weather + 3-day forecast for any city or lat/lon worldwide — temperature, feels-like, humidity, wind, precipitation, cloud cover, and a plain-language condition. Give a city name (geocoded for you) or coordinates. No API key, metric or imperial units. Pass params as query (GET) or a JSON body (POST).

## Output

A JSON object containing: current conditions (temperature, feels-like, humidity, wind speed and direction, precipitation, cloud cover percentage, WMO weather code, plain-language condition, day/night flag); a 3-day daily forecast array (date, temp max/min, precipitation, weather code, condition); resolved location metadata (name, region, country, lat/lon, timezone); unit labels; and data source attribution. Cache age is also reported.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "city": {
       "type": "string",
       "description": "City or place name to geocode, e.g. \"London\" or \"Austin, TX\". Aliases: location, q, place, name. Ignored when coordinates are given"
      },
      "units": {
       "type": "string",
       "description": "metric (default: °C, km/h, mm) or imperial (°F, mph, inch). Alias: unit"
      },
      "latitude": {
       "type": "number",
       "description": "Latitude -90..90 — must be paired with longitude; coordinates skip geocoding and win over city. Alias: lat"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude -180..180 — must be paired with latitude. Aliases: lon, lng"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "units": {
       "type": "object",
       "properties": {
        "wind_speed": {
         "type": "string"
        },
        "temperature": {
         "type": "string"
        },
        "precipitation": {
         "type": "string"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "current": {
       "type": "object",
       "properties": {
        "is_day": {
         "type": "boolean"
        },
        "condition": {
         "type": [
          "string",
          "null"
         ],
         "description": "plain-language WMO condition"
        },
        "feels_like": {
         "type": [
          "number",
          "null"
         ]
        },
        "wind_speed": {
         "type": [
          "number",
          "null"
         ]
        },
        "temperature": {
         "type": [
          "number",
          "null"
         ]
        },
        "humidity_pct": {
         "type": [
          "number",
          "null"
         ]
        },
        "weather_code": {
         "type": [
          "number",
          "null"
         ]
        },
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "units": {
   "wind_speed": "km/h",
   "temperature": "°C",
   "precipitation": "mm"
  },
  "source": "open-meteo",
  "current": {
   "is_day": true,
   "condition": "Overcast",
   "feels_like": 13.1,
   "wind_speed": 11.5,
   "temperature": 14.2,
   "humidity_pct": 77,
   "weather_code": 3,
   "precipitation": 0,
   "cloud_cover_pct": 75,
   "wind_direction_deg": 210
  },
  "findings": [],
  "forecast": [
   {
    "date": "2026-08-31",
    "temp_max": 18.4,
    "temp_min": 11.2,
    "condition": "Rain",
    "weather_code": 61,
    "precipitation": 1.3
   },
   {
    "date": "2026-09-01",
    "temp_max": 19.1,
    "temp_min": 12,
    "condition": "Partly cloudy",
    "weather_code": 2,
    "precipitation": 0
   },
   {
    "date": "2026-09-02",
    "temp_max": 17.8,
    "temp_min": 11.6,
    "condition": "Rain showers",
    "weather_code": 80,
    "precipitation": 0.4
   }
  ],
  "location": {
   "name": "London",
   "region": "England",
   "country": "United Kingdom",
   "latitude": 51.51,
   "timezone": "Europe/London",
   "longitude": -0.13
  },
  "cache_age_seconds": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-weather-current-conditions-3-day-forecast-7a390722/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
