Generate Mescomedia CAPTCHA

Fetch Request

const fetchCode = `fetch('https://helpers.mescomedia.com/generate-captcha', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({
        length: 6,
        fontSize: '30px',
        fontFamily: 'Arial',
        randomItalic: false,
        onlyNumbers: false,
        onlyLetters: false,
        height: 50,
        width: 100
    })
})
.then(response => response.json())
.then(result => {
    document.getElementById('captcha-result').innerHTML = result.img;
});`;