root.convert = function(method, amount, callback) {
    var url;
    url = _getURL(method) + ("&amount=" + amount);
    return _response(url, callback);
  };