# Current Weather by Coordinates

> Current Weather by Coordinates is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net:10000, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns current weather conditions for a geographic location specified by latitude and longitude coordinates

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net:10000/data/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/current-weather-by-coordinates-3b3b9f63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RY82XMaxDp0086J5KwByv

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 current-weather-by-coordinates-3b3b9f63
```

Example prompt: What's the current weather at latitude 52.52 and longitude 13.41?

## When to prefer this

Use this endpoint when you need current weather conditions for a specific geographic point identified by latitude and longitude. Ideal for cases where you already have precise GPS or geocoded coordinates and need live meteorological data without requiring a city name or address lookup.

## Known failure modes

- Missing lat or lon parameters returns an error or empty response
- Invalid coordinate values (out of range) may return an error
- Network or upstream weather provider downtime causes failure
- Coordinates in remote areas with no nearby weather station may return sparse data

## How this service works

Current weather for coordinates. ?lat=52.52&lon=13.41

## Output

Returns current weather data for the specified coordinates, including meteorological conditions such as temperature, description, humidity, and wind information at that location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lat": {
       "type": "number"
      },
      "lon": {
       "type": "number"
      }
     }
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/current-weather-by-coordinates-3b3b9f63/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
