name: "http/get"
module: "http-json"
section: "HTTP"
```
(http/get url)
(http/get url opts)
```
Make an HTTP GET request.
- -
```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"}})
```