JSFiddle - React, Tailwind, and code Playground

JavaScript

$.ajax({
  type: "POST",
  dataType: "json",
  contentType: "application/json",
  url: "https://www.googleapis.com/urlshortener/v1/url",
  data: '{ longUrl: "http://some.url" }'
})
  .done(function( msg ) {
    console.log( msg );
  });