Instagram Reels & Video Downloader

Instagram Reels & Video Downloader

by neuro-scraper

A fast, reliable Instagram Video & Reels Downloader that extracts high-quality media, duration, formats count, thumbnail, title ,requested reslutions....

34 runs
6 users
Try This Actor

Opens on Apify.com

About Instagram Reels & Video Downloader

A fast, reliable Instagram Video & Reels Downloader that extracts high-quality media, duration, formats count, thumbnail, title ,requested reslutions. Supports public posts, batch downloads, and smart parsing for research, archiving, analytics, and content monitoring.

What does this actor do?

Instagram Reels & Video Downloader is a web scraping and automation tool available on the Apify platform. It's designed to help you extract data and automate tasks efficiently in the cloud.

Key Features

  • Cloud-based execution - no local setup required
  • Scalable infrastructure for large-scale operations
  • API access for integration with your applications
  • Built-in proxy rotation and anti-blocking measures
  • Scheduled runs and webhooks for automation

How to Use

  1. Click "Try This Actor" to open it on Apify
  2. Create a free Apify account if you don't have one
  3. Configure the input parameters as needed
  4. Run the actor and download your results

Documentation

🌟 Instagram Video and Reels Downloader Actor Build Status Version License Trusted One-line hero: Instantly fetch Instagram videos & Reels at scale β€” reliable downloads, safe storage, and enterprise-ready uploads in seconds. --- ## πŸ“– Short summary A production-ready Apify Actor that discovers and downloads Instagram media (regular videos and Reels), merges audio/video when needed, and securely stores results in Apify Key-Value Store or Dataset β€” plug-and-play for fast results. --- ## πŸ’‘ Use cases / When to use * Collect public Instagram videos and Reels for analytics or archives. * Batch export videos to a secure Key-Value Store for downstream processing. * Create offline backups of frequently updated Instagram content. * Integrate media fetch into pipelines for ML, moderation, or content migration. --- ## ⚑ Quick Start (Console β€” one-click) 1. Open this Actor in Apify Console. 2. Paste your input JSON (see input.example.json). 3. Click Run β€” get results in seconds. Console Hero Screenshot --- ## βš™οΈ Quick Start (CLI + API) CLI (one-liner) bash apify run --actor <OWNER>/<ACTOR_NAME> --input input.example.json Python (apify-client) python from apify_client import ApifyClient client = ApifyClient('<APIFY_TOKEN>') run = client.actor('OWNER/ACTOR_NAME').call(input={ 'startUrls': ['https://www.instagram.com/p/EXAMPLE/'], 'download': True, 'desired_resolution': '1080p' }) print('Run started:', run['id']) --- ## πŸ“ Inputs (fields & schema) Console JSON example β€” see input.example.json file for copy-paste. Top-level input fields (concise): json { "startUrls": [ "https://www.instagram.com/p/EXAMPLE/", "https://www.instagram.com/reel/EXAMPLE/" ], "download": true, "desired_resolution": "1080p", "merge_if_ffmpeg": true, "save_videos_to_kv": true, "remove_local_files": false, "cookie_file": null, "proxyConfiguration": {}, "maxConcurrency": 3 } --- ## βš™οΈ Configuration | πŸ”‘ Name | πŸ“ Type | ❓ Required | βš™οΈ Default | πŸ“Œ Example | 🧠 Notes | | -----------------: | ------: | ----------: | ---------: | ------------------------------------------------------------------------------------------ | --------------------------------------------------------- | | startUrls | array | βœ… Yes | [] | ["https://.../p/ID/", "https://.../reel/ID/"] | One or more Instagram media URLs to download | | download | boolean | βš™οΈ Optional | false | true | If true, media will be downloaded and optionally uploaded | | desired_resolution | string | βš™οΈ Optional | "1080p" | "720p" | Preferred resolution (1080p/720p/480p/360p) | | merge_if_ffmpeg | boolean | βš™οΈ Optional | false | true | Merge video+audio when separate (requires ffmpeg) | | save_videos_to_kv | boolean | βš™οΈ Optional | true | true | Upload downloaded media to Apify Key-Value Store | | remove_local_files | boolean | βš™οΈ Optional | false | false | Remove temporary files after upload | | cookie_file | string | βš™οΈ Optional | null | "cookies.txt" | Use for private/protected content (upload as secret) | | proxyConfiguration | object | βš™οΈ Optional | {} | {"useApifyProxy": true} | Apify Proxy config object or custom proxy settings | | maxConcurrency | integer | βš™οΈ Optional | 3 | 3 | Number of concurrent downloads (tune for your plan) | Console setup hint: Paste the JSON example into the Actor input field, adjust startUrls and flags, then click Run. --- ## πŸ“„ Outputs (Dataset / KV examples) This Actor writes per-run aggregated metadata to the Key-Value Store under the OUTPUT key and pushes per-item objects to the default Dataset. Example output object (single item) json { "url": "https://www.instagram.com/reel/EXAMPLE/", "title": "Sample Title", "uploader": "uploader_name", "duration": 34, "formats_count": 5, "requested_resolution": "1080p", "download_links": {"merged_video":"https://..."}, "downloaded_file": "Sample_Title.mp4", "kv_media_key": "MEDIA_abcdef123456_Sample_Title.mp4" } Explanation: * OUTPUT (KVS) β€” aggregated array of all results for easy programmatic consumption. * Dataset rows β€” per-URL metadata and download/upload status. --- ## πŸ”‘ Environment Variables * APIFY_TOKEN β€” required for CLI/API runs. Use placeholder: <APIFY_TOKEN>. * Custom proxies: use placeholders like <PROXY_USER:PASS@HOST:PORT> when configuring secrets. > Always store tokens and proxy credentials in Apify Console Secrets; do not place secrets in plain input JSON. --- ## ▢️ How to Run (Console, CLI, API) Console 1. Open Actor page in Apify Console. 2. Paste input.example.json into the Input field. 3. Click Run. Monitor logs and results in the Console UI. CLI bash apify run --actor <OWNER>/<ACTOR_NAME> --input input.example.json API (Python) β€” see Quick Start above for snippet. --- ## ⏰ Scheduling & Webhooks * Schedule periodic runs using Apify Console Scheduler (cron-style). Use maxConcurrency to control load. * Configure Webhooks in Console to receive a POST when a run finishes β€” ideal for downstream pipelines. --- ## πŸ•ΎοΈ Logs & Troubleshooting * Check run logs in Apify Console for per-item extraction and download messages. * Common quick fixes: * ffmpeg-related merges fail β†’ enable merge_if_ffmpeg only if ffmpeg is available in your environment. * Authentication-only content β†’ provide cookie_file via Console file upload and reference its filename. * Proxy errors β†’ double-check proxy secret and format. --- ## πŸ”’ Permissions & Storage Notes * Storage: Dataset (per-item), Key-Value Store (OUTPUT key) and temporary local disk during downloads. * Privacy: Actor is secure by design β€” tokens and proxy credentials should be stored in Console Secrets. The Actor does not leak secrets to outputs. --- ## πŸ”Ÿ Changelog / Versioning * v1.0.0 β€” Initial production-ready release: format discovery, async downloads, KVS upload, concurrency controls. --- ## πŸ–Œ Notes / TODOs * TODO: confirm output schema β€” inferred from main.py but not explicit. * TODO: add demo GIF/screenshots (provide images or screenshots for best conversion). --- ## 🌍 Proxy Configuration Enable Apify Proxy (Console): turn on the built-in Apify Proxy toggle in the Actor run settings. Custom proxies: set proxyConfiguration input or configure environment variables. Example placeholders: * HTTP/HTTPS proxy env vars: bash HTTP_PROXY=<PROXY_USER:PASS@HOST:PORT> HTTPS_PROXY=<PROXY_USER:PASS@HOST:PORT> Secrets: Always store proxy credentials as Console Secrets, not plaintext in inputs. Advanced: TODO: Consider proxy rotation for large-scale scraping. --- ## πŸ“š References 1. Official Apify Actor README guidelines β€” (Console docs) 2. Apify input/output schema docs β€” (Console docs) 3. Apify CLI & API usage docs β€” (Console docs) --- ## πŸ€” What I inferred from main.py * The Actor performs network extraction and downloads Instagram media (regular videos and Reels). * Main inputs: startUrls, download, desired_resolution, merge_if_ffmpeg, save_videos_to_kv, remove_local_files, cookie_file, proxyConfiguration, maxConcurrency. * Outputs: per-item metadata pushed to Dataset and an aggregated array stored to Key-Value Store under the OUTPUT key. * Scheduling and concurrency controls are built into the Actor input (via maxConcurrency). --- --- # --- input.example.json --- json { "startUrls": [ "https://www.instagram.com/p/EXAMPLE/", "https://www.instagram.com/reel/EXAMPLE/" ], "download": true, "desired_resolution": "1080p", "merge_if_ffmpeg": true, "save_videos_to_kv": true, "remove_local_files": false, "cookie_file": null, "proxyConfiguration": {}, "maxConcurrency": 3 } # --- CONFIG.md --- ## CONFIG & Advanced Notes * File uploads (cookies): upload your cookies file in Apify Console Files and reference the filename in cookie_file. * ffmpeg: merging requires ffmpeg available on the runner. If you rely on merging, ensure your environment supports it or set merge_if_ffmpeg to false. * Proxy formats: use <PROXY_USER:PASS@HOST:PORT> placeholders for custom proxies and store as Console Secrets. * Scaling: increase maxConcurrency carefully according to your Apify plan and target site capacity. --- End of generated documentation.

Common Use Cases

Market Research

Gather competitive intelligence and market data

Lead Generation

Extract contact information for sales outreach

Price Monitoring

Track competitor pricing and product changes

Content Aggregation

Collect and organize content from multiple sources

Ready to Get Started?

Try Instagram Reels & Video Downloader now on Apify. Free tier available with no credit card required.

Start Free Trial

Actor Information

Developer
neuro-scraper
Pricing
Paid
Total Runs
34
Active Users
6
Apify Platform

Apify provides a cloud platform for web scraping, data extraction, and automation. Build and run web scrapers in the cloud.

Learn more about Apify

Need Professional Help?

Couldn't solve your problem? Hire a verified specialist on Fiverr to get it done quickly and professionally.

Find a Specialist

Trusted by millions | Money-back guarantee | 24/7 Support