api
Weather

Endpoint All

https://api.i-as.dev/api/weather

Response

{
  "weatherData": [
    {
      "city": "string",
      "time": "string",
      "weatherIcon": "string",
      "temperature": "string"
    },
    // More data
  ]
}

Endpoint Filter

https://api.i-as.dev/api/weather?city={city}

Response

{
  "weatherData": [
    {
      "city": "string",
      "time": "string",
      "weatherIcon": "string",
      "temperature": "string"
    }
  ]
}