$.ajax({
url: _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbytitle('Pages')/Items?$select=ID",
type: "GET",
headers: {"accept": "application/json;odata=verbose"},
success: function (data) {
if (data.d.results) {
// TODO: handle the data
alert('handle the data');
}
},
error: function (xhr) {
alert(xhr.status + ': ' + xhr.statusText);
}
});