JSFiddle - React, Tailwind, and code Playground

JavaScript

$.ajax({
    type: 'GET',
    url: 'https://coinbase.com/api/v1/prices/spot_rate',
    dataType: "JSONP",
    success: function(datums) {
        console.log(datums);
    },
    error: function(errr, r, s) {
        console.log(errr, r, s);
    }
});