# SixPath Weather Current Conditions

> SixPath Weather Current Conditions is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.063152/call, status unknown (last checked 2026-09-14).

Returns current weather conditions for a given geographic coordinate (latitude/longitude)

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/weather-current
- Price: $0.063152/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-weather-current-conditions-5e4750b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MKj0F0DVu-Xi6BrDzBP29

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 sixpath-weather-current-conditions-5e4750b1 -d '<json body>'
```

Example prompt: What's the current weather at latitude 40.7128 and longitude -74.0060?

## When to prefer this

Use this endpoint when you need real-time current weather conditions for a specific geographic coordinate pair and are already operating within the x402 pay-per-call micropayment ecosystem on Base chain. Prefer this over forecast endpoints when only present conditions are needed.

## Known failure modes

- Missing or invalid latitude/longitude returns an error
- Coordinates outside supported geographic range may return no data
- Payment failure via x402 protocol results in 402 response and no data returned
- Malformed string values for lat/lon may cause a parsing error

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

A JSON object containing current weather conditions for the provided latitude and longitude coordinates, likely including temperature, weather description, humidity, and related meteorological data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "string"
  },
  "lon": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-weather-current-conditions-5e4750b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
