# x402-data-bazaar Current Weather Decision Brief

> x402-data-bazaar Current Weather Decision Brief is a paid API for AI agents from x402-data-bazaar.vercel.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-14).

Returns an actionable weather decision brief for exact lat/lon coordinates, including current conditions, outdoor score, commute risk, and gear recommendations.

## Facts

- Endpoint: GET https://x402-data-bazaar.vercel.app/api/weather/current/40.7128/-74.0060
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-data-bazaar-vercel-app-f9fff598
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u_7WP1vW3tvmyqEUAcUuB

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 x402-data-bazaar-vercel-app-f9fff598
```

Example prompt: What are the current weather conditions at 40.7128, -74.0060 — should I bring a coat or umbrella, and is it a good day to be outside?

## When to prefer this

Choose this endpoint when you need an immediate, human-readable weather decision brief — not just raw meteorological data — for a precise lat/lon location. It is ideal when an agent needs to advise a user on what to wear or whether to go outside, rather than building a full forecast display. Prefer this over forecast endpoints when only current conditions matter, and over raw weather APIs when you need the interpreted outdoor score and commute risk packaged together.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error
- Coordinates in ocean or uninhabited areas may return limited or no data
- Upstream Open-Meteo API unavailability causes fetch failure
- Missing path parameters (lat or lon) result in a 404 or bad request
- Network timeout if the weather data provider is slow to respond

## How this service works

Actionable weather decision brief for exact coordinates encoded in the path -- current conditions, rain timing, outdoor score, commute risk, and what to bring. e.g. GET /api/weather/current/40.7128/-74.0060

## Output

Returns current temperature (°F and feels-like), humidity, weather condition (e.g. Overcast), an outdoor suitability score (0-100), commute risk level (low/medium/high), boolean coat and umbrella recommendations, a plain-English decision summary, and timezone for the queried coordinates.

## Response schema (JSON Schema)

```json
{
 "data": {
  "decision": {
   "summary": "Bring a coat; looks dry for the next several hours; commute conditions look manageable",
   "commuteRisk": "low",
   "outdoorScore": 72,
   "coatRecommended": true,
   "umbrellaRecommended": false
  },
  "latitude": 40.7103,
  "timezone": "America/New_York",
  "condition": "Overcast",
  "longitude": -74.0071,
  "feels_like_f": 24.1,
  "humidity_pct": 55,
  "temperature_f": 31.3
 },
 "source": "Open-Meteo API",
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-data-bazaar-vercel-app-f9fff598/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-data-bazaar.vercel.app](https://www.zero.xyz/host/x402-data-bazaar.vercel.app/llms.txt)
