Current temperature
21 C
New York, United States
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
New York, United States
Wind speed
10m wind speed
Condition
WMO code 0
Local time
Updates the minute live for New York
Forecast preview
Daily high, low, and condition
Tue, Jul 28
High 28 C
Low 20 C
Wed, Jul 29
High 24 C
Low 21 C
Thu, Jul 30
High 24 C
Low 19 C
Fri, Jul 31
High 27 C
Low 20 C
Sat, Aug 1
High 26 C
Low 21 C
API preview
https://api.open-meteo.com/v1/forecast?latitude=40.7128&longitude=-74.006¤t=temperature_2m,weather_code,wind_speed_10m&daily=weather_code,temperature_2m_max,temperature_2m_min&forecast_days=5&timezone=auto200{
"query": {
"input": "New York",
"resolvedLocation": "New York, United States"
},
"location": {
"city": "New York",
"country": "United States",
"admin1": null,
"latitude": 40.7128,
"longitude": -74.006,
"timeZone": "America/New_York"
},
"current": {
"temperature": 21.3,
"windSpeed": 6,
"weatherCode": 0,
"condition": "Clear sky",
"observedAt": "2026-07-28T03:00"
},
"forecast": [
{
"date": "2026-07-28",
"condition": "Rain",
"maxTemperature": 27.9,
"minTemperature": 20.4
},
{
"date": "2026-07-29",
"condition": "Rain",
"maxTemperature": 23.9,
"minTemperature": 20.5
},
{
"date": "2026-07-30",
"condition": "Rain",
"maxTemperature": 23.9,
"minTemperature": 19.1
},
{
"date": "2026-07-31",
"condition": "Drizzle",
"maxTemperature": 26.7,
"minTemperature": 19.6
},
{
"date": "2026-08-01",
"condition": "Partly cloudy",
"maxTemperature": 26.1,
"minTemperature": 21.2
}
],
"rawResponsePreview": {
"latitude": 40.710335,
"longitude": -73.99308,
"generationtime_ms": 1372.6834058761597,
"utc_offset_seconds": -14400,
"timezone": "America/New_York",
"timezone_abbreviation": "GMT-4",
"elevation": 32,
"current_units": {
"time": "iso8601",
"interval": "seconds",
"temperature_2m": "°C",
"weather_code": "wmo code",
"wind_speed_10m": "km/h"
},
"current": {
"time": "2026-07-28T03:00",
"interval": 900,
"temperature_2m": 21.3,
"weather_code": 0,
"wind_speed_10m": 6
},
"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": [
61,
65,
80,
51,
3
],
"temperature_2m_max": [
27.9,
23.9,
23.9,
26.7,
26.1
],
"temperature_2m_min": [
20.4,
20.5,
19.1,
19.6,
21.2
]
}
}
}