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": [
32.8,
19.1,
23.4,
5.55,
3.6,
0.9,
0.9
],
"temperature_2m_max": [
27.1,
26.8,
25.4,
28.2,
27.8,
29.7,
29.5
],
"temperature_2m_min": [
22.4,
23.4,
23.8,
22.7,
21.2,
21.0,
21.8
],
"time": [
"2026-08-12",
"2026-08-13",
"2026-08-14",
"2026-08-15",
"2026-08-16",
"2026-08-17",
"2026-08-18"
],
"weather_code": [
63,
61,
63,
61,
53,
51,
51
],
"wind_speed_10m_max": [
9.3,
4.1,
3.8,
9.4,
8.7,
8.1,
6.2
]
},
"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": 0.5432367324829102,
"latitude": 35.7,
"longitude": 139.625,
"timezone": "Asia/Tokyo",
"timezone_abbreviation": "GMT+9",
"utc_offset_seconds": 32400
},
"success": true
}