# AgentToll Current Weather by Coordinates

> AgentToll Current Weather by Coordinates is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns current weather conditions for a given latitude/longitude coordinate, paid per-call in USDC via x402.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/env/weather-current
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-current-weather-by-coordinates-57160a44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BeCHZNB8n7hyBtTCKRU2R

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 agenttoll-current-weather-by-coordinates-57160a44 -d '<json body>'
```

Example prompt: What's the current weather at latitude 40.7128, longitude -74.0060? I want temperature, wind speed, and humidity.

## When to prefer this

Choose this endpoint when you need current (real-time) weather at a precise geographic coordinate and want pay-per-call pricing with no subscription commitment. It is ideal for AI agents that need to enrich tasks with live environmental context, especially in agentic workflows where weather is queried infrequently or for varied locations. Prefer this over subscription weather APIs when cost predictability per query matters and you only need current conditions rather than forecasts.

## Known failure modes

- Invalid or out-of-range latitude/longitude values return an error
- Payment failure via x402 prevents data retrieval
- Upstream weather data provider outage results in empty or error response
- Unsupported variable names in the optional variables parameter may be silently ignored or return an error
- Rate limiting if too many calls are made in rapid succession

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

A JSON object containing current weather data for the specified coordinates, typically including variables like temperature, wind speed, humidity, and any other meteorological fields requested via the optional variables parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "number latitude"
  },
  "lon": {
   "type": "number",
   "description": "number longitude"
  },
  "variables": {
   "type": "string",
   "description": "optional comma-separated weather variables"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-current-weather-by-coordinates-57160a44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
