Multi-day weather forecast for any city or lat/lon worldwide — up to 16 days of
Multi-day weather forecast for any city or lat/lon worldwide — up to 16 days of daily highs/lows, precipitation & probability, UV, sunrise/sunset, wind, and plain-language conditions, plus optional next-24h hourly. Give a city name (geocoded) or coordinates. No API key, metric or imperial. Pass params as query (GET) or a JSON body (POST).
Answeringour last check, 2026-09-24
1 of 1checks answered this week
928 msmedian answer time
$0.003listed price per call
$0.003price 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/forecast
| Category | Everything else |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 from 2 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.003 | 928 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"city": "London",
"days": 7
},
"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"
},
"days": {
"description": "Daily forecast length 1-16 (default 7; out-of-range values are clamped with a finding). Alias: forecast_days",
"type": "number"
},
"hourly": {
"description": "true to include the next 24 hours hour-by-hour (temperature, precipitation + probability, wind, condition). Default false. Alias: include_hourly; 1/true accepted",
"type": "boolean"
},
"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"
},
"daily": {
"description": "one object per day: date, temp_max, temp_min, feels_like_max, feels_like_min, precipitation, precip_probability_pct (nullable far out), uv_index_max, sunrise, sunset, wind_speed_max, wind_gusts_max, wind_direction_deg, weather_code, condition",
"type": "array"
},
"days": {
"description": "daily forecast length actually used (after clamping to 1-16)",
"type": "number"
},
"findings": {
"type": "array"
},
"hourly": {
"description": "present ONLY when hourly=true \u2014 next 24 hours: time, temperature, precipitation, precip_probability_pct, wind_speed, 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"
}