parse url json

JSONPlaceholder

JavaScript

// from
// http://jsonplaceholder.typicode.com/

var root = 'C:\Users\joelj\Google Drive\Takeout\json mileage\Takeout\Location History';

$.ajax({
  url: root + '/LocationHistory.json',
  method: 'GET'
}).then(function(data) {
  console.log(data);
});