# weatherbrief

> weatherbrief is a paid API for AI agents from 89.106.83.95.sslip.io:8446, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current weather conditions and 24-hour hourly forecast for any latitude/longitude coordinate, paid per call in USDC on Base via x402

## Facts

- Endpoint: GET https://89.106.83.95.sslip.io:8446/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weatherbrief-475fb65d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-gBxqRZuAiGCRpvRne1GE

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 weatherbrief-475fb65d
```

Example prompt: What's the current weather and 24-hour hourly forecast at latitude 51.5, longitude -0.12? Just pay the per-call fee and give me the conditions and temps.

## When to prefer this

Choose this endpoint when you need a simple, account-free weather lookup by coordinates and are comfortable with crypto micropayments via x402 on Base. Ideal for agents that need to pay per call without API key management, and when you only need current conditions plus a 24-hour hourly forecast rather than extended multi-day outlooks.

## Known failure modes

- Missing or invalid lat/lon parameters returns an error response
- Payment failure or insufficient USDC balance blocks the request
- Coordinates outside supported coverage area may return empty or partial data
- Network timeout if the endpoint at the raw IP address is unreachable
- Malformed query parameters (non-numeric lat/lon) result in a 400-level error

## How this service works

Reliable forecasts for any coordinates: current conditions + 24h hourly. No accounts — pay $0.01 per call in USDC on Base via x402.

## Output

A JSON object containing the queried latitude and longitude, current conditions including temperature in Celsius, and an array of hourly forecast entries for the next 24 hours.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lat",
      "lon"
     ],
     "properties": {
      "lat": {
       "type": "number"
      },
      "lon": {
       "type": "number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lat": 51.5,
  "lon": -0.12,
  "hourly": [],
  "current": {
   "temp_c": 18.2
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weatherbrief-475fb65d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 89.106.83.95.sslip.io:8446](https://www.zero.xyz/host/89.106.83.95.sslip.io%3A8446/llms.txt)
