sema-docs 1.20.4

Canonical structured documentation for Sema builtins/special forms; powers LSP hover/completion and REPL apropos
Documentation
---
name: "http/delete"
module: "http-json"
section: "HTTP"
---

```
(http/delete url)
(http/delete url opts)
```

Make an HTTP DELETE request.

- **url** — string, the request URL
- **opts** — optional map with `:headers` and/or `:timeout`

```sema
(http/delete "https://api.example.com/users/42"
  {:headers {"Authorization" "Bearer tok_abc123"}})
```