JSONStub for test json data

JSONStub for test json data

by Nirvanachain

HTML

<!-- URL to JSONStub:
http://jsonstub.com/
-->
<a href="http://jsonstub.com/" target="_blank">JSONStub.com</a>

JavaScript

$.ajax({
    type: 'GET',
    url: 'http://jsonstub.com/test/1',
    beforeSend: function (request) {
        request.setRequestHeader('JsonStub-User-Key', 'cec1b70c-a41f-4e03-864b-1f0c6e03718a');
        request.setRequestHeader('JsonStub-Project-Key', 'ea6b0109-3612-4fc5-85f6-9dd8a31fe85b');
    }
}).done(function (data) {
    //do something with data
    console.log(data);
    alert(data.message);
    alert(data.endOfLine);
});