# weather-now

> weather-now is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current weather conditions (temperature, humidity, wind, precipitation, cloud cover) for any place name or coordinates using Open-Meteo data.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weather-now-42d1f699
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zpsRMcbW3ar0jMVCaIqwg

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-now-42d1f699
```

Example prompt: What's the current weather in Paris right now — temperature, feels-like, humidity, wind speed and direction, and whether it's raining?

## When to prefer this

Choose this endpoint when you need real-time current weather conditions (not forecasts) for any global location specified by name or coordinates, at minimal cost ($0.01 per call) and without needing an API key. It's ideal for agents needing quick weather context enrichment, location-aware automation, or live condition checks without setting up a full weather API subscription.

## Known failure modes

- Unrecognized or misspelled place name returns an error or empty result
- Coordinates outside valid range (-90 to 90 lat, -180 to 180 lon) may fail validation
- Open-Meteo upstream outage causes timeout or 503 error
- Ambiguous place name may resolve to unexpected location (e.g. 'Springfield' resolving to wrong state)
- Missing required 'input' parameter returns a 400 or schema validation error

## How this service works

Current weather for any place name or coordinates: temperature, feels-like, humidity, wind speed and direction, precipitation, cloud cover, condition text, plus the resolved location and timezone. Free Open-Meteo data, no key. $0.01 per lookup.

## Output

A JSON object containing current weather data for the resolved location: temperature and feels-like temperature, humidity percentage, wind speed and direction, precipitation amount, cloud cover percentage, a human-readable condition description, the resolved location name, and the timezone.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weather-now-42d1f699/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
