Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 395 Bytes

weather.md

File metadata and controls

34 lines (28 loc) · 395 Bytes

Buscar temperatura por cidades

Route: /get-weather
Method: GET

Query:

{
  cities: string[]
}

Success Response:

{
  data: {
    weatherCities: [
      {
        city: string,
        temp: number,
        tempMin: number,
        tempMax: number,
        sunrise: number,
        sunset: number
      }
    ]
  },
  status: boolean,
  message: string
}