sema-docs 1.20.1

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

```
(http/get url)
(http/get url opts)
```

Make an HTTP GET request.

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

```sema
;; Simple GET
(http/get "https://httpbin.org/get")

;; GET with custom headers
(http/get "https://api.example.com/users"
  {:headers {:authorization "Bearer my-token"}})
```