Current temperature
28 C
Tokyo, Japan
API Pulse Dashboard
Public dashboards for GitHub, crypto, and weather APIs.
Weather Pulse
Search locations, switch between presets, and inspect current temperature, wind speed, WMO condition summaries, forecast preview, and raw Open-Meteo response data.
Current temperature
Tokyo, Japan
Wind speed
10m wind speed
Condition
WMO code 1
Local time
Updates the minute live for Tokyo
Forecast preview
Daily high, low, and condition
Tue, Jul 28
High 29 C
Low 22 C
Wed, Jul 29
High 34 C
Low 22 C
Thu, Jul 30
High 32 C
Low 24 C
Fri, Jul 31
High 35 C
Low 25 C
Sat, Aug 1
High 32 C
Low 25 C
API preview
https://api.open-meteo.com/v1/forecast?latitude=35.6762&longitude=139.6503¤t=temperature_2m,weather_code,wind_speed_10m&daily=weather_code,temperature_2m_max,temperature_2m_min&forecast_days=5&timezone=auto200{
"query": {
"input": "Tokyo",
"resolvedLocation": "Tokyo, Japan"
},
"location": {
"city": "Tokyo",
"country": "Japan",
"admin1": null,
"latitude": 35.6762,
"longitude": 139.6503,
"timeZone": "Asia/Tokyo"
},
"current": {
"temperature": 27.7,
"windSpeed": 4.4,
"weatherCode": 1,
"condition": "Partly cloudy",
"observedAt": "2026-07-28T15:45"
},
"forecast": [
{
"date": "2026-07-28",
"condition": "Drizzle",
"maxTemperature": 28.9,
"minTemperature": 21.7
},
{
"date": "2026-07-29",
"condition": "Partly cloudy",
"maxTemperature": 34.1,
"minTemperature": 22.3
},
{
"date": "2026-07-30",
"condition": "Partly cloudy",
"maxTemperature": 32.4,
"minTemperature": 23.7
},
{
"date": "2026-07-31",
"condition": "Thunderstorm",
"maxTemperature": 35.1,
"minTemperature": 24.8
},
{
"date": "2026-08-01",
"condition": "Thunderstorm",
"maxTemperature": 32.4,
"minTemperature": 25
}
],
"rawResponsePreview": {
"latitude": 35.7,
"longitude": 139.625,
"generationtime_ms": 0.2416372299194336,
"utc_offset_seconds": 32400,
"timezone": "Asia/Tokyo",
"timezone_abbreviation": "GMT+9",
"elevation": 37,
"current_units": {
"time": "iso8601",
"interval": "seconds",
"temperature_2m": "°C",
"weather_code": "wmo code",
"wind_speed_10m": "km/h"
},
"current": {
"time": "2026-07-28T15:45",
"interval": 900,
"temperature_2m": 27.7,
"weather_code": 1,
"wind_speed_10m": 4.4
},
"daily_units": {
"time": "iso8601",
"weather_code": "wmo code",
"temperature_2m_max": "°C",
"temperature_2m_min": "°C"
},
"daily": {
"time": [
"2026-07-28",
"2026-07-29",
"2026-07-30",
"2026-07-31",
"2026-08-01"
],
"weather_code": [
55,
3,
3,
96,
95
],
"temperature_2m_max": [
28.9,
34.1,
32.4,
35.1,
32.4
],
"temperature_2m_min": [
21.7,
22.3,
23.7,
24.8,
25
]
}
}
}