The following code from Bacon.js will push the data object returned from the AJAX request into the console.
Bacon.fromPromise($.ajax({ url : requestUrlString })).log()
What is not clear, is how to assign the returned data object to a variable, or to do anything with the data object when a response is returned.