JSFiddle - React, Tailwind, and code Playground

by Alex

HTML

<pre id="drop"></pre>

JavaScript

fetch('https://tracking.naturebalance.net/api/check/DE-123-456789')
	.then(function (response) {
  	return response.json()
	})
  .then(function (json) {
		document.getElementById('drop').innerHTML = JSON.stringify(json, null, '    ');
  });