const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: 'jsmith@example.com'})
};
fetch('https://api.valox.co/api/v1/auth/signup/otp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));