Weather

Description: Shows current weather conditions and forecast information for a specific location.

API Response Structure:

{
  "current": {
    "temperature": "25°C",
    "condition": "Sunny",
    "humidity": "60%",
    "wind": "10 km/h"
  },
  "forecast": [
    {
      "day": "Monday",
      "high": "27°C",
      "low": "18°C",
      "condition": "Partly Cloudy"
    }
  ],
  "type": "instantAnswers",
  "configType": "weather"
}

Fields:

  • current (object): Current weather conditions

    • temperature (string): Current temperature

    • condition (string): Weather condition

    • humidity (string): Humidity percentage

    • wind (string): Wind speed and direction

  • forecast (array): Weather forecast

    • day (string): Day of the week

    • high (string): Highest temperature

    • low (string): Lowest temperature

    • condition (string): Weather condition

  • type (string): Always "instantAnswers"

  • configType (string): Always "weather"