curl_post
Send HTTP POST requests to specified URLs with custom data, JSON payloads, headers, and timeout settings, enabling streamlined API interactions.
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 |