curl
Make HTTP requests to any URL, supporting methods like GET, POST, PUT, DELETE, PATCH, and HEAD with custom headers and body.
Instructions
Make HTTP requests to web endpoints. Example: GET request to an API or POST data to a server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to request | |
| method | No | HTTP method | GET |
| headers | No | Request headers (object of key-value pairs) | |
| body | No | Request body (for POST/PUT/PATCH) |