# SYNTHORA Weather Now

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

Returns real-time weather conditions (temperature, wind speed, wind direction, precipitation code) for any latitude/longitude coordinate via Open-Meteo

## Facts

- Endpoint: POST https://weather-current.hergertsynthora.com/service
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-weather-now-3ae63a95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_loAjK8is9dzVJWbE1ZHq9

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-3ae63a95 -d '<json body>'
```

Example prompt: What are the current weather conditions at latitude 48.8566, longitude 2.3522? I need the temperature, wind speed, wind direction, and weather code right now.

## When to prefer this

Use this endpoint when you need real-time point-in-time weather conditions for any global coordinate without an API key, especially in logistics, agriculture, or energy contexts where cost per call must be minimal. Prefer it over full forecast services when only current conditions are needed, and over keyed providers when zero-setup access is required.

## Known failure modes

- Invalid or out-of-range latitude/longitude values causing a failed lookup
- Open-Meteo upstream API unavailability resulting in no data returned
- Malformed request body missing required latitude or longitude fields
- Network timeout if the upstream provider is slow to respond
- Payment failure via x402 preventing the request from being processed

## How this service works

Real-time weather (temp, wind, precip, code) for any lat/lon via Open-Meteo. For logistics, energy and agri agents. Free, no key. $0.005 USDC via x402 on Base. SYNTHORA.

## Output

Returns a JSON object with ok status, a timestamp, current temperature (°C), wind speed (km/h), wind direction (degrees), and a WMO weather interpretation code — all sourced from Open-Meteo for the requested coordinate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "latitude",
  "longitude"
 ],
 "properties": {
  "latitude": {
   "type": "number",
   "description": "latitude"
  },
  "longitude": {
   "type": "number",
   "description": "longitude"
  }
 }
}
```

## More

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