Returns current weather for any city or place name, no coordinates needed
Returns current weather for any city or place name, no coordinates needed. Geocodes the name with Open-Meteo, chooses the best match with optional country_code, then returns current temperature, feels-like, humidity, wind, precipitation, WMO weather code, timezone, and optional daily/hourly forecast from Open-Meteo. Use it as a city weather API or instant weather lookup by place name.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
20 msmedian answer time
$0.01listed price per call
$0.01price 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-current-city
| Category | Code and developer |
|---|---|
| Provider host | x402.agentutility.ai |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 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.01 | 20 ms |
Example input (from the provider)
{
"body": {
"city": "San Francisco",
"country_code": "US",
"forecast_days": 3,
"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": {
"city": {
"description": "City or place name, e.g. 'Paris', 'San Francisco', or 'Springfield'.",
"type": "string"
},
"country_code": {
"description": "Optional two-letter ISO country code to disambiguate, e.g. 'US', 'FR', 'JP'.",
"type": "string"
},
"forecast_days": {
"description": "Daily forecast days to include, 1-7. Default 1.",
"type": "number"
},
"hourly": {
"description": "If true, include hourly temperature, precipitation, and weather code arrays.",
"type": "boolean"
},
"query": {
"description": "Alias for city.",
"type": "string"
},
"units": {
"description": "Metric or imperial output units. Default metric.",
"enum": [
"metric",
"imperial"
],
"type": "string"
}
},
"required": [
"city"
]
},
"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": "integer"
},
"humidity_pct": {
"type": "integer"
},
"temperature": {
"type": "integer"
},
"weather_code": {
"type": "integer"
},
"wind_speed": {
"type": "integer"
}
},
"type": "object"
},
"query": {
"type": "string"
},
"resolved_location": {
"properties": {
"admin1": {
"type": "string"
},
"country_code": {
"type": "string"
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"source": {
"properties": {
"forecast": {
"type": "string"
},
"geocoding": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}