loading tool...
const response = await fetch("https://api.example.dev/users", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer token"
},
body: "{\"name\":\"Ada\"}"
});
const data = await response.text();