Live weather + 3-day forecast for any city or lat/lon worldwide — temperature, f
Live weather + 3-day forecast for any city or lat/lon worldwide — temperature, feels-like, humidity, wind, precipitation, cloud cover, and a plain-language condition. Give a city name (geocoded for you) or coordinates. No API key, metric or imperial units. Pass params as query (GET) or a JSON body (POST).
Answeringour last check, 2026-09-24
1 of 1checks answered this week
934 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
GET https://netintel.dev/weather/current
| Category | Everything else |
|---|---|
| Provider host | netintel.dev |
| 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 | 934 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"city": "London"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"city": {
"description": "City or place name to geocode, e.g. \"London\" or \"Austin, TX\". Aliases: location, q, place, name. Ignored when coordinates are given",
"type": "string"
},
"latitude": {
"description": "Latitude -90..90 \u2014 must be paired with longitude; coordinates skip geocoding and win over city. Alias: lat",
"type": "number"
},
"longitude": {
"description": "Longitude -180..180 \u2014 must be paired with latitude. Aliases: lon, lng",
"type": "number"
},
"units": {
"description": "metric (default: \u00b0C, km/h, mm) or imperial (\u00b0F, mph, inch). Alias: unit",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"cache_age_seconds": {
"description": "0 = fresh; forecasts are cached up to 10 min per location",
"type": "number"
},
"current": {
"properties": {
"cloud_cover_pct": {
"type": [
"number",
"null"
]
},
"condition": {
"description": "plain-language WMO condition",
"type": [
"string",
"null"
]
},
"feels_like": {
"type": [
"number",
"null"
]
},
"humidity_pct": {
"type": [
"number",
"null"
]
},
"is_day": {
"type": "boolean"
},
"precipitation": {
"type": [
"number",
"null"
]
},
"temperature": {
"type": [
"number",
"null"
]
},
"weather_code": {
"type": [
"number",
"null"
]
},
"wind_direction_deg": {
"type": [
"number",
"null"
]
},
"wind_speed": {
"type": [
"number",
"null"
]
}
},
"type": "object"
},
"findings": {
"type": "array"
},
"forecast": {
"description": "next 3 days: date, temp_max, temp_min, precipitation, weather_code, condition",
"type": "array"
},
"location": {
"properties": {
"country": {
"type": [
"string",
"null"
]
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"name": {
"type": [
"string",
"null"
]
},
"region": {
"type": [
"string",
"null"
]
},
"timezone": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"source": {
"type": "string"
},
"units": {
"properties": {
"precipitation": {
"type": "string"
},
"temperature": {
"type": "string"
},
"wind_speed": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}