Back to catalog
Cortexa research tool·code data·file_download
Download Binary File
Download binary files (images, videos, executables) with chunked streaming for better memory management. Optimized for large files.
Livelast probed 2026-04-30 23:07Z· 96msCortexa
Status
The most recent probe succeeded. Safe to call from the agent today.
- Last probed
- 1d ago
- Last success
- 1d ago
- Last latency
- 96ms
Schema
JSON Schema the agent (or your API call) must match.
{
"additionalProperties": false,
"properties": {
"chunk_size": {
"default": 1048576,
"description": "Download chunk size in bytes (default: 1MB for binary files)",
"maximum": 10485760,
"minimum": 1024,
"type": "integer"
},
"output_path": {
"description": "Full path where to save the binary file (e.g., /tmp/image.jpg or C:\\Users\\Downloads\\video.mp4)",
"example": "/path/to/save/file.bin",
"type": "string"
},
"timeout": {
"default": 30,
"description": "Request timeout in seconds",
"maximum": 300,
"minimum": 1,
"type": "integer"
},
"url": {
"description": "HTTP or HTTPS URL to download from",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"output_path"
],
"type": "object"
}Examples (1)
Default Download Binary File call
public-safeinput
{
"chunk_size": 1,
"output_path": "",
"timeout": 1,
"url": ""
}Expected response keys: success
Anonymous-safe example. Rate-limited; no sign-in required.
Identifiers
- Catalog ID
- tu_download_binary_file
- Tool name
- download_binary_file
- Added
- 2026-04-30 22:47Z
- Tags
- tooluniverse