I fixed it by doing below change:
export function fetchdata() {
return fetch("<API URL>", { method: 'get' })
.then((response) => {
return response.json()
.then((json) => {
return user.getEmail()
.then((email) => {
return json[email];
});
});
});
}