curl_advanced
Execute custom HTTP requests and download files using advanced curl arguments. Ideal for interacting with web APIs and retrieving remote content efficiently.
Instructions
Execute curl with custom arguments (advanced usage)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes | Array of curl arguments (excluding 'curl' itself) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"args": {
"description": "Array of curl arguments (excluding 'curl' itself)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"args"
],
"type": "object"
}