Entities.prototype.get = function(entity, callback) {
    var path = 'entities/' + entity;

    this.getRequest(path, {}, {}, function(error, response, body) {
        callback(error, response, body);