Current conditions and forecast for any latitude/longitude
Current conditions and forecast for any latitude/longitude. Returns present weather plus a 1-7 day daily forecast (temp max/min, precipitation, sunrise/sunset, UV index) and an optional hourly forecast. A simple weather API on the Open-Meteo backend.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
22 msmedian answer time
$0.002listed price per call
$0.002price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://x402.agentutility.ai/weather
| Category | Everything else |
|---|---|
| Provider host | x402.agentutility.ai |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 22 ms |
Example input (from the provider)
{
"body": {
"forecast_days": 3,
"latitude": 37.7749,
"longitude": -122.4194,
"units": "imperial"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"forecast_days": {
"description": "Number of forecast days, 1-7. Default 3.",
"type": "number"
},
"hourly": {
"description": "If true, include hourly temperature, precipitation, and weather code arrays. Default false.",
"type": "boolean"
},
"latitude": {
"description": "Decimal degrees, range [-90, 90]. Positive north.",
"type": "number"
},
"longitude": {
"description": "Decimal degrees, range [-180, 180]. Positive east.",
"type": "number"
},
"units": {
"description": "'metric' (\u00b0C, km/h, mm) or 'imperial' (\u00b0F, mph, inch). Default 'metric'.",
"enum": [
"metric",
"imperial"
],
"type": "string"
}
},
"required": [
"latitude",
"longitude"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"current": {
"properties": {
"apparent_temperature": {
"type": "number"
},
"humidity_pct": {
"type": "integer"
},
"is_day": {
"type": "boolean"
},
"precipitation": {
"type": "integer"
},
"temperature": {
"type": "number"
},
"time": {
"type": "string"
},
"weather_code": {
"type": "integer"
},
"wind_direction_deg": {
"type": "integer"
},
"wind_speed": {
"type": "number"
}
},
"type": "object"
},
"daily": {
"items": {
"properties": {
"date": {
"type": "string"
},
"precipitation_mm": {
"type": "integer"
},
"precipitation_probability_max": {
"type": "integer"
},
"sunrise": {
"type": "string"
},
"sunset": {
"type": "string"
},
"temperature_max": {
"type": "number"
},
"temperature_min": {
"type": "number"
},
"uv_index_max": {
"type": "number"
},
"weather_code": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"location": {
"properties": {
"elevation_m": {
"type": "integer"
},
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"timezone": {
"type": "string"
}
},
"type": "object"
},
"source": {
"type": "string"
},
"units": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}