Api.prototype.getChat = function (chatId) {
  return yarl.get(this.url + 'getChat', { query: {
    chat_id: chatId
  }, json: true });
};