curl_request
Send HTTP requests to external APIs using specified URL, method, headers, and data. Facilitates integration with external services with configurable timeout, redirects, and SSL options.
Instructions
Execute a curl request to an external HTTP API. Allows specifying URL, method, headers, and data. Useful for integrating with external services via HTTP.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | No | Data to send in the request body | |
followRedirects | No | Whether to follow redirects | |
headers | No | HTTP headers to include in the request | |
insecure | No | Whether to skip SSL certificate verification (use with caution) | |
method | No | HTTP method | GET |
timeout | No | Request timeout in seconds | |
url | Yes | Full URL to send the request to |