# weather.agentutil.net Current Weather

> weather.agentutil.net Current Weather is a paid API for AI agents from weather.agentutil.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns current weather conditions for a given geographic location specified by coordinates or place name

## Facts

- Endpoint: POST https://weather.agentutil.net/v1/current
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weather-agentutil-net-e55d0f23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L6fwB26IK37iMCXWM4All

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 weather-agentutil-net-e55d0f23 -d '<json body>'
```

Example prompt: What's the current weather in Tokyo right now? Use lat 35.6762 and lon 139.6503.

## When to prefer this

Use this endpoint when you need real-time current weather conditions for a specific location, either by city/place name or precise GPS coordinates. Prefer this over forecast endpoints when you only need the current snapshot, not future predictions.

## Known failure modes

- Invalid or out-of-range latitude/longitude values return a validation error
- Unknown or misspelled location name may return no results or an error
- Missing both lat/lon and location name results in a bad request error
- Network or upstream data provider outage returns a 5xx error
- Payment not processed correctly returns a 402 payment required error

## How this service works

Get current weather conditions for a location

## Output

Current weather conditions for the requested location, including meteorological data such as temperature, humidity, wind, and sky conditions at the time of the request.

## Example request

```json
{
 "location": "Tokyo"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "Latitude (-90 to 90)"
  },
  "lon": {
   "type": "number",
   "description": "Longitude (-180 to 180)"
  },
  "location": {
   "type": "string",
   "description": "City or place name (e.g. 'London', 'Tokyo')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "current",
  "service",
  "location",
  "request_id",
  "related_services"
 ],
 "properties": {
  "current": {
   "type": "object",
   "required": [
    "wind",
    "humidity",
    "conditions",
    "feels_like",
    "temperature",
    "pressure_hpa",
    "weather_code",
    "observation_time",
    "precipitation_mm"
   ],
   "properties": {
    "wind": {
     "type": "object",
     "required": [
      "speed_kmh",
      "direction_degrees"
     ],
     "properties": {
      "speed_kmh": {
       "type": "number"
      },
      "direction_degrees": {
       "type": "number"
      }
     }
    },
    "humidity": {
     "type": "number"
    },
    "conditions": {
     "type": "string"
    },
    "feels_like": {
     "type": "object",
     "required": [
      "celsius",
      "fahrenheit"
     ],
     "properties": {
      "celsius": {
       "type": "number"
      },
      "fahrenheit": {
       "type": "number"
      }
     }
    },
    "temperature": {
     "type": "object",
     "required": [
      "celsius",
      "fahrenheit"
     ],
     "properties": {
      "celsius": {
       "type": "number"
      },
      "fahrenheit": {
       "type": "number"
      }
     }
    },
    "pressure_hpa": {
     "type": "number"
    },
    "weather_code": {
     "type": "number"
    },
    "observation_time": {
     "type": "string"
    },
    "precipitation_mm": {
     "type": "number"
    }
   }
  },
  "service": {
   "type": "string"
  },
  "location": {
   "type": "object",
   "required": [
    "name",
    "country",
    "latitude",
    "longitude"
   ],
   "properties": {
    "name": {
     "type": "string"
    },
    "country": {
     "type": "string"
    },
    "latitude": {
     "type": "number"
    },
    "longitude": {
     "type": "number"
    }
   }
  },
  "request_id": {
   "type": "string"
  },
  "related_services": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "name",
     "description"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weather-agentutil-net-e55d0f23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from weather.agentutil.net](https://www.zero.xyz/host/weather.agentutil.net/llms.txt)
