# OpenWeather Current Conditions via gateway.apiosk.com

> OpenWeather Current Conditions via gateway.apiosk.com is a paid API for AI agents from gateway.apiosk.com, paid per call via x402, $0.11/call, status down (last checked 2026-09-15).

Fetches current weather conditions (temperature, humidity, wind, clouds, visibility) for a specified location via the OpenWeatherMap API

## Facts

- Endpoint: GET https://gateway.apiosk.com/openweather/current
- Price: $0.11/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openweather-current-conditions-via-gateway-apiosk-com-87a5a5dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TjJVKm8mWoqeiHYxzDewB

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 openweather-current-conditions-via-gateway-apiosk-com-87a5a5dc
```

Example prompt: What's the current weather in London right now — temperature, humidity, wind speed, and sky conditions?

## When to prefer this

Use this endpoint when you need real-time, point-in-time weather conditions for a specific city or coordinate and are operating in an x402 micropayment-enabled agent environment. Prefer this over direct OpenWeatherMap calls when you need pay-per-call billing via USDC without managing API key subscriptions.

## Known failure modes

- Invalid or unrecognized city name returns an error or empty result
- Missing required location parameter causes a 400-level error
- Payment not included or insufficient USDC triggers a 402 Payment Required response
- Network or upstream OpenWeatherMap outage returns a 5xx error
- Rate limit exceeded may result in throttling or rejection

## How this service works

API call to openweather

## Output

Returns a JSON object with current weather data including temperature (actual, feels-like, min, max), humidity, atmospheric pressure (surface and sea-level), wind speed, wind direction, wind gust, cloud coverage percentage, visibility, weather condition description and icon code, sunrise and sunset timestamps, geographic coordinates, and timezone offset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "dt": 1782240221,
 "id": 2643743,
 "cod": 200,
 "sys": {
  "id": 2075535,
  "type": 2,
  "sunset": 1782246103,
  "country": "GB",
  "sunrise": 1782186212
 },
 "base": "stations",
 "main": {
  "temp": 30.93,
  "humidity": 53,
  "pressure": 1016,
  "temp_max": 32.77,
  "temp_min": 30.59,
  "sea_level": 1016,
  "feels_like": 33.11,
  "grnd_level": 1012
 },
 "name": "London",
 "wind": {
  "deg": 53,
  "gust": 1.79,
  "speed": 1.79
 },
 "coord": {
  "lat": 51.5085,
  "lon": -0.1257
 },
 "clouds": {
  "all": 4
 },
 "weather": [
  {
   "id": 800,
   "icon": "01d",
   "main": "Clear",
   "description": "clear sky"
  }
 ],
 "timezone": 3600,
 "visibility": 10000
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openweather-current-conditions-via-gateway-apiosk-com-87a5a5dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.apiosk.com](https://www.zero.xyz/host/gateway.apiosk.com/llms.txt)
