(Translated by https://www.hiragana.jp/)
GitHub - robertoduessmann/weather-api: A RESTful API to check the weather
Skip to content

robertoduessmann/weather-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

weather-api

License Build Status Go Report Card GoDoc

A REST API to check the current weather.

https://goweather.herokuapp.com/weather/Curitiba
https://goweather.herokuapp.com/weather/{city}

Build locally (Mac users)

go build

Run

./weather-api

Usage

curl http://localhost:3000/weather/{city}

Example

Request

curl http://localhost:3000/weather/Curitiba

Response

{
   "temperature":"29 °C",
   "wind":"20 km/h",
   "description":"Partly cloudy",
   "forecast":[
      {
         "day":1,
         "temperature":"27 °C",
         "wind":"12 km/h"
      },
      {
         "day":2,
         "temperature":"22 °C",
         "wind":"8 km/h"
      }
   ]
}

Web version

A web client of the API is also available: https://reacttempo.netlify.app/
The project can be found in https://github.com/GabrielCampos99/appTempo.

License

The MIT License (MIT)