Files
http.md/docs/examples/with-multiple-requests.md
Morten Olsen db59fee6b1 init
2025-05-18 19:53:59 +02:00

380 B

Document with Multiple Requests

First, create a resource:

POST https://httpbin.org/post
Content-Type: application/json

{"username": "alpha"}

Then, fetch a different resource:

GET https://httpbin.org/get?item=123

Response from creating the user: ::response{#createUser}

Response from getting the item: ::response{#getItem}