curl_post
Perform HTTP POST requests using curl to send data, JSON, or custom headers to a specified URL, with options for redirects, timeouts, and content type.
Instructions
Make an HTTP POST request using curl
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | No | Content-Type header (will be added automatically for JSON data) | |
data | No | Data to send in the POST request body | |
follow_redirects | No | Whether to follow redirects | |
headers | No | Optional HTTP headers in the format 'Header: Value' | |
json_data | No | JSON object to send as POST data | |
timeout | No | Request timeout in seconds | |
url | Yes | The URL to make the POST request to |