Curl Client
Curl Client allows you to send HTTP requests using curl directly from VS Code.
Features
- Click "▶ Send Curl Request" above any curl command to run it instantly.
- Syntax highlighting for comments, HTTP methods, flags, URLs, and strings.
- Output displayed in VS Code Output panel.
- Supports GET and POST requests.
- Lightweight and fast.
Example
# GET request
curl -X GET https://xxxxx.com/posts/3
# POST request
curl -X POST https://xxxxx.com/posts \
-H "Content-Type: application/json" \
-d '{ "title": "foo", "body": "bar", "userId": 1}'
| |