JSFiddle - React, Tailwind, and code Playground

by taffrail

JavaScript

fetch("https://engine.taffrail.com/api/rules?keyword=roth+ira&limit=20&page=0", {
headers: {
"authorization": "Bearer TFfos5FOyMtIBdFiN1u91Ml.wJqr-v3ywxaJv6zMI746R1i0fkS79jM3IUPWLcXtZc",
"content-type": "application/json"
}
}).then(api => {
return api.json();
}).then(api => {
console.log(api.data.rules.length)
})