OpenWeatherMap · Example Payload

Air Pollution Current Example

WeatherForecastClimateAir PollutionAir QualitySolarGeocodingHistoryMapsRoad RiskPublic APIs

Air Pollution Current Example is an example object payload from OpenWeatherMap, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationrequestresponse

Example Payload

Raw ↑
{
  "operation": "getCurrentAirPollution",
  "request": {
    "method": "GET",
    "url": "https://api.openweathermap.org/data/2.5/air_pollution?lat=50.0&lon=50.0&appid={API_KEY}"
  },
  "response": {
    "coord": { "lon": 50.0, "lat": 50.0 },
    "list": [
      {
        "dt": 1748505600,
        "main": { "aqi": 1 },
        "components": {
          "co": 224.0,
          "no": 0.0,
          "no2": 0.45,
          "o3": 92.0,
          "so2": 0.83,
          "pm2_5": 5.36,
          "pm10": 7.21,
          "nh3": 0.49
        }
      }
    ]
  }
}