download
Download Instagram videos to a local path by providing the video URL and destination directory. Track progress and save content programmatically.
Instructions
Instagram downloader
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Download local path (e.g. /Users/project/vue, /Users/download) | |
url | Yes | Instagram website address (e.g. https://www.instagram.com/p/DHvN6-xygmQ/, https://www.instagram.com/p/DHaq23Oy1iV/) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Download local path (e.g. /Users/project/vue, /Users/download)",
"type": "string"
},
"url": {
"description": "Instagram website address (e.g. https://www.instagram.com/p/DHvN6-xygmQ/, https://www.instagram.com/p/DHaq23Oy1iV/)",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"path"
],
"type": "object"
}