fetch("http://example.com/api/example", {    method:"POST",    body:JSON.stringify({        data:"lolipop",    }),    headers: {        "Content-type":"application/json"    }}).then(response =>response.json()).then(json =>console.log(json));