JSFiddle - React, Tailwind, and code Playground
JavaScript
const url = 'https://october.richardhunter.co.uk/index.php/api/article/2';
const options = {
headers: {
'Authorization': `Basic eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJuYW1lIjoiUmljaGFyZGluaG8iLCJleHAiOjE1NDk3MzU1NzB9.NX7BiYzXkvGmA-MokvZdtQyI_nKq_vkqNRtFJbBlLPE`
}
};
fetch(url, options).then(response => {
return response.json();
}).then(data => {
console.log(data);
});