# 24K Labs Current Weather by Lat/Lon

> 24K Labs Current Weather by Lat/Lon is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns current temperature, wind speed, humidity, and weather conditions for any latitude/longitude coordinate using Open-Meteo (no API key required).

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/weather-current
- 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/24k-labs-current-weather-by-lat-lon-6470fe00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RmsOZm---6WRm3lN6pZ5L

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 24k-labs-current-weather-by-lat-lon-6470fe00 -d '<json body>'
```

Example prompt: What's the current temperature, wind speed, and humidity right now at latitude 37.7749, longitude -122.4194?

## When to prefer this

Choose this endpoint when you need real-time weather conditions (temperature, wind, humidity) for an arbitrary geographic coordinate without managing API keys. It's ideal for agents that need to enrich location-based decisions with current weather, and especially useful when paired with geocoding output. Prefer it over full forecast endpoints when only current snapshot data is needed.

## Known failure modes

- Invalid or out-of-range latitude/longitude values return an error
- Coordinates over open ocean or extreme poles may return sparse data
- Open-Meteo upstream unavailability can cause timeouts or empty responses
- Malformed request body (missing lat/lon fields) returns a 4xx error

## How this service works

Current temperature, wind, humidity, and conditions for any lat/lon (Open-Meteo, keyless).

## Output

Returns current weather data for the given coordinates including temperature, wind speed and direction, relative humidity, and a human-readable conditions description. Data is sourced from Open-Meteo and reflects real-time observations.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "temperature_c": 12.3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-current-weather-by-lat-lon-6470fe00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
