# NetIntel Weather Current Conditions API

> NetIntel Weather Current Conditions API is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns current weather conditions plus a 3-day forecast for any city or coordinates, with no API key required via x402 micropayments.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/weather/current
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-weather-current-conditions-api-40024ce0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iUkfbM1W7oV-Tr3FJuzT8

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-api-40024ce0
```

Example prompt: What's the current weather in London right now — give me temperature, feels-like, humidity, wind speed, and a 3-day forecast in metric units.

## When to prefer this

Choose this endpoint when you need real-time current weather plus a short-range forecast for any global location without managing API keys or subscriptions. It is especially suitable for agents that need pay-per-call pricing with no signup overhead and guaranteed no-charge on errors. Prefer it over heavier weather APIs when you only need current conditions and a 3-day outlook, and when cost predictability at $0.002/call matters. It supports both city-name geocoding and raw coordinates, making it flexible for both human-facing and programmatic inputs.

## Known failure modes

- Invalid or unrecognizable city name returns an error or empty location
- Latitude out of -90..90 or longitude out of -180..180 range causes input validation rejection (no charge)
- Upstream Open-Meteo outage results in no charge per NetIntel's policy
- Missing both city and coordinates returns a validation error (no charge)
- Partial coordinates (only lat or only lon provided) may fall back to city or fail validation

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns a JSON object with: current conditions (temperature, feels_like, humidity_pct, wind_speed, wind_direction_deg, precipitation, cloud_cover_pct, weather_code, plain-language condition, is_day flag), a 3-day daily forecast array (date, temp_max, temp_min, precipitation, weather_code, condition), resolved location metadata (name, region, country, latitude, longitude, timezone), units used, data source, and cache age in seconds.

## 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-api-40024ce0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
