Sending Requests

Build and send HTTP requests to any API endpoint directly from your browser.

Sending a Request

  1. Select the HTTP method (GET, POST, PUT, PATCH, DELETE) from the dropdown
  2. Enter the URL in the address bar
  3. Add query parameters in the Params tab
  4. Add custom headers in the Headers tab
  5. For POST/PUT, add a JSON body in the Body tab
  6. Configure authentication in the Auth tab
  7. Click Send or press Ctrl+Enter

Example

Here's how a GET request looks in different formats:

curl

curl -X GET "https://jsonplaceholder.typicode.com/posts/1"
javascript
fetch("https://jsonplaceholder.typicode.com/posts/1")
  .then(res => res.json())
  .then(console.log);

Next steps

Dive deeper into each part of the request:

On this page