Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
const res = await fetch("/api/users", { method: "POST", headers: { "Content-Type": "application/json", "Accept": "application/json" }, body: JSON.stringify({ name: "Alice", email: "alice@example.com" }), }); const created = await res.json(); console.log(created.id);
Result
Open