Sending Requests
Build and send HTTP requests to any API endpoint directly from your browser.
Sending a Request
- Select the HTTP method (GET, POST, PUT, PATCH, DELETE) from the dropdown
- Enter the URL in the address bar
- Add query parameters in the Params tab
- Add custom headers in the Headers tab
- For POST/PUT, add a JSON body in the Body tab
- Configure authentication in the Auth tab
- 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
Racoon