# weather-now-pittsburgh

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

Returns current weather conditions in Pittsburgh, PA including temperature, feels-like, humidity, wind, precipitation, cloud cover, and today's sunrise/sunset times.

## Facts

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

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-pittsburgh-cc5c3e18
```

Example prompt: What's the weather like in Pittsburgh right now — temperature, wind, and whether it's raining?

## When to prefer this

Choose this endpoint when you specifically need real-time current conditions in Pittsburgh, PA without needing a forecast or historical data. It requires no API key, charges a flat $0.01 per call, and bundles sunrise/sunset alongside standard weather metrics — useful for any agent that needs a quick, low-cost snapshot of Pittsburgh's current weather.

## Known failure modes

- Open-Meteo upstream outage may cause missing or stale data
- Payment failure (402) if USDC balance is insufficient
- Network timeout if data.intel.rallylive.ca is unreachable
- No historical or forecast data — only current conditions are returned

## How this service works

Current weather in Pittsburgh right now: temperature, feels-like, humidity, wind speed and direction, precipitation, cloud cover and conditions from Open-Meteo, plus today's sunrise and sunset. No API key. $0.01 per call.

## Output

A JSON object containing current Pittsburgh weather data: temperature and feels-like values, humidity percentage, wind speed and direction, precipitation amount, cloud cover percentage, general conditions description, and today's sunrise and sunset times — all sourced from Open-Meteo.

## 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-pittsburgh-cc5c3e18/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.intel.rallylive.ca](https://www.zero.xyz/host/data.intel.rallylive.ca/llms.txt)
