# PennyRail Current Weather Lookup

> PennyRail Current Weather Lookup is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches current weather conditions for a given location via a paid x402 settlement endpoint

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/network/weather.current--current-weather
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pennyrail-current-weather-lookup-39f39e26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WQvl1Om9vkRQxVl-f0M8u

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 pennyrail-current-weather-lookup-39f39e26 -d '<json body>'
```

Example prompt: What's the current weather in Chicago right now — temperature, conditions, that kind of thing?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call current weather lookup without a subscription, especially in an x402-compatible agentic payment flow using USDC. It is well-suited for sporadic or low-volume weather queries where a recurring API key subscription is overkill.

## Known failure modes

- Missing or malformed input object returns a 400 error
- Insufficient USDC balance or payment failure blocks access with a 402 response
- Unknown or unsupported location may return empty or null data
- Network timeout or Vercel cold-start may cause intermittent latency spikes

## How this service works

Machine-readable settlement service

## Output

Returns a JSON object containing current weather conditions for the queried location, including data such as temperature, weather description, humidity, and related meteorological fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

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