✨ Instagram Reels Downloader Apify avatar
✨ Instagram Reels Downloader Apify

Pricing

$15.00/month + usage

Go to Store
✨ Instagram Reels Downloader Apify

✨ Instagram Reels Downloader Apify

Developed by

Imad

Imad

Maintained by Community

⚡ Fast Instagram Reels downloader that saves public Reels to S3 or MinIO with clean filenames (video.mp4, thumbnail.jpg, description.txt). Fully temp-based, no local storage. Supports parallel downloads, custom S3 endpoints, and is perfect for archiving or automation workflows.

5.0 (1)

Pricing

$15.00/month + usage

1

Total users

3

Monthly users

3

Runs succeeded

79%

Last modified

5 days ago

You can access the ✨ Instagram Reels Downloader Apify programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "directUrls": [
12 "https://www.instagram.com/reel/DKe9MrjKtQy/"
13 ],
14 "s3_access_key": "AKIAAOSJEKSIXHNZDI",
15 "s3_secret_key": "s6xA2PgBC/sZs/szidnSjAEHSshazebQSOZ+",
16 "s3_bucket_name": "bucket-s2spz4",
17 "s3_endpoint_url": "",
18 "s3_prefix": "instagram-reels/",
19 "proxy": {
20 "useApifyProxy": true
21 }
22};
23
24// Run the Actor and wait for it to finish
25const run = await client.actor("damilo/instagram-reels-downloader-apify").call(input);
26
27// Fetch and print Actor results from the run's dataset (if any)
28console.log('Results from dataset');
29console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
30const { items } = await client.dataset(run.defaultDatasetId).listItems();
31items.forEach((item) => {
32 console.dir(item);
33});
34
35// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

✨ Instagram Reels Downloader Apify API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use ✨ Instagram Reels Downloader Apify API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

$npm install apify-client

Other API clients include: