#+HEADER: :tangle no #+HEADER: :results verbatim #+BEGIN_SRC sh curl --silent --request GET 'http://localhost:4891/posts' #+END_SRC #+RESULTS: #+begin_example [ { "title": "Title of post 1" }, { "title": "Title of post 2" }, { "title": "Title of post 3" } ] #+end_example #+HEADER: :tangle no #+HEADER: :results verbatim #+BEGIN_SRC sh curl --include --silent --request GET 'http://localhost:4891/posts' #+END_SRC #+RESULTS: #+begin_example HTTP/1.1 200 OK Server: Werkzeug/3.0.4 Python/3.10.12 Date: Thu, 17 Oct 2024 15:02:54 GMT Content-Type: application/json Content-Length: 123 Connection: close [ { "title": "Title of post 1" }, { "title": "Title of post 2" }, { "title": "Title of post 3" } ] #+end_example #+HEADER: :tangle no #+HEADER: :results verbatim #+BEGIN_SRC sh seq 1 10 #+END_SRC #+RESULTS: #+begin_example 1 2 3 4 5 6 7 8 9 10 #+end_example