JSFiddle - React, Tailwind, and code Playground

HTML

<div id="print"></div>

JavaScript

$.getJSON("https://api.trello.com/1/boards/YwLL95q8/cards/?limit=20&fields=name&members=true&member_fields=fullName&key=58e65b138a31f27d73d19271713dc91a&token=57f1c23c7951fa1dd62181d051e118724e98d151ef7d202aa661f8120db4cf29")
.success(function(responseObj) {
    document.getElementById('print').innerHTML = JSON.stringify(responseObj);
});