...
private const string jsonApi =           
"http://api.openweathermap.org/data/2.5/weather?q=Chicago,us";
...
public IEnumerator GetWeatherJSON(Action<string> callback) {
   return CallAPI(jsonApi, callback);
}
...
