13 lines
451 B
HTTP
13 lines
451 B
HTTP
@city = "grosshansdorf"
|
|
@lang = de
|
|
@forecast_days = 3
|
|
# could be 60(mins) or 24(day)
|
|
@time_period_forecast = 60
|
|
@key = 3545ce42d0ba436e8dc164532250410
|
|
|
|
### aktuelles Wetter
|
|
GET https://api.weatherapi.com/v1/current.json?key={{key}}&q={{city}}&aqi=yes&lang={{lang}}
|
|
|
|
### Vorhersage für n Tage (max 3 Tage for Free-Plan!)
|
|
GET https://api.weatherapi.com/v1/forecast.json?q={{city}}&days={{forecast_days}}&tp={{time_period_forecast}}&key={{key}}&lang=de
|