GET /weather/forecast
获取最多 16 天的多天天气预报,含每日最高/最低温度、降水概率、风速和天气代码。支持坐标或城市名称查询。适用于旅行规划应用、活动安排工具、农业仪表板和帮助用户围绕未来天气条件进行规划的任何功能。数据来自 Open-Meteo 预报模型。
lat
可选
Latitude
lon
可选
Longitude
city
可选
City name
days
可选
默认: 7
Forecast days
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
lat |
否 | - | Latitude |
lon |
否 | - | Longitude |
city |
否 | - | City name |
days |
否 | 7 | Forecast days |
curl "https://nordapi.ee/api/v1/weather/forecast?city=tokyo&days=7"
curl "https://nordapi.ee/api/v1/weather/forecast?city=tokyo&days=7"
curl "https://nordapi.ee/api/v1/weather/forecast?city=london&days=3"
curl "https://nordapi.ee/api/v1/weather/forecast?lat=-33.87&lon=151.21&days=16"
curl "https://nordapi.ee/api/v1/weather/forecast?city=oslo"
{
"city": "tokyo",
"data": {
"daily": {
"precipitation_sum": [
0.6,
0.0,
0.6,
1.0,
0.6,
4.2,
0.0
],
"temperature_2m_max": [
21.9,
23.7,
26.2,
27.7,
25.4,
21.4,
25.7
],
"temperature_2m_min": [
17.8,
16.5,
17.2,
18.8,
18.2,
17.0,
16.1
],
"time": [
"2026-06-10",
"2026-06-11",
"2026-06-12",
"2026-06-13",
"2026-06-14",
"2026-06-15",
"2026-06-16"
],
"weather_code": [
51,
2,
51,
53,
51,
53,
3
],
"wind_speed_10m_max": [
6.6,
7.6,
6.5,
8.7,
11.7,
9.8,
9.3
]
},
"daily_units": {
"precipitation_sum": "mm",
"temperature_2m_max": "°C",
"temperature_2m_min": "°C",
"time": "iso8601",
"weather_code": "wmo code",
"wind_speed_10m_max": "km/h"
},
"elevation": 37.0,
"generationtime_ms": 223.92308712005615,
"latitude": 35.7,
"longitude": 139.625,
"timezone": "Asia/Tokyo",
"timezone_abbreviation": "GMT+9",
"utc_offset_seconds": 32400
},
"success": true
}