# SYNTHORA Weather Now

> SYNTHORA Weather Now is a paid API for AI agents from api.hergertsynthora.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns current weather conditions (temperature, feels-like, humidity, wind, WMO condition code) plus a 6-hour temperature trend for any city name or lat/lon coordinates

## Facts

- Endpoint: POST https://api.hergertsynthora.com/v1/weather-now
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-weather-now-820fc2bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WKM1XOZ1Q50XX2zDSX7-W

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 synthora-weather-now-820fc2bf -d '<json body>'
```

Example prompt: What's the current weather in Madrid — temperature, humidity, wind, and whether it's trending warmer or cooler over the next 6 hours?

## When to prefer this

Choose this endpoint when you need a quick, no-auth, low-cost current weather snapshot with an actionable 6-hour temperature trend for any global city or coordinate pair. It is especially useful for agents that need to make short-term decisions (e.g. outdoor activity planning, logistics routing) based on whether conditions are improving or worsening. Prefer this over full forecast APIs when only current conditions and near-term trend direction are needed, not multi-day forecasts.

## Known failure modes

- Unrecognized city name returns an error or empty result
- Invalid lat/lon values outside valid ranges cause a parsing failure
- Open-meteo.com upstream outage results in no data returned
- Ambiguous city names (e.g. Springfield) may resolve to an unexpected location
- Malformed input string (missing comma between lat and lon) causes a lookup failure

## How this service works

SYNTHORA weather-now: current weather for any city or lat,lon — temperature, feels-like, humidity, wind, WMO condition code in plain text, plus the 6h temperature trend (rising/falling/flat), which is the actionable part. Free source: open-meteo.com (ECMWF/NOAA/DWD), no API key, timestamped.

## Output

A plain-text response containing: current temperature, feels-like temperature, humidity percentage, wind speed, WMO weather condition code, a 6-hour temperature trend label (rising/falling/flat), and a timestamp — all sourced from open-meteo.com using ECMWF/NOAA/DWD model data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "string",
   "description": "SYNTHORA weather-now: current weather for any city or lat,lon — temperature, feels-like, humidity, wind, WMO condition code in plain text, plus the 6h temperature trend (rising/falling/flat), which is"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-weather-now-820fc2bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hergertsynthora.com](https://www.zero.xyz/host/api.hergertsynthora.com/llms.txt)
