# Instagram Video Downloader (`apilabs/instagram-downloader`) Actor

Download Instagram videos or extract audio without any limits.

- **URL**: https://apify.com/apilabs/instagram-downloader.md
- **Developed by:** [ApiLabs](https://apify.com/apilabs) (community)
- **Categories:** Automation, Videos, Social media
- **Stats:** 664 total users, 8 monthly users, 100.0% runs succeeded, 18 bookmarks
- **User rating**: 1.00 out of 5 stars

## Pricing

$5.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Instagram Downloader API

### Overview

The Instagram Downloader API provides a powerful and flexible solution for downloading reels, videos, audio, from Instagram Feed. With support for multiple formats like MP3 and MP4, users can choose their desired quality option for the best media experience. This all-in-one downloader is perfect for developers looking to integrate seamless media downloading capabilities into their applications.

### Features

- **Download Video**: Fetch and store high-quality videos from Instagram.
- **Download Audio**: Extract and save audio tracks in various formats, including MP3.
- **Format Options**: Choose between MP3 and MP4 formats for your downloads.
- **Quality Selection**: Select your preferred quality for downloads to ensure the best experience.

### Input Parameters

The API accepts the following input parameters:

- **url**: The URL of the Instagram video or audio content to download.
- **quality**: The desired quality option for the download (e.g., 720p, 1080p, etc.).
- **onlyAudio**: A boolean flag (`true`/`false`) indicating whether to download audio only.
- **useFFmpeg**: A boolean flag (`true`/`false`) to specify if FFmpeg should be used for processing.
- **proxy**: (Optional) The proxy URL to be used for the download.

**Note**: Using a proxy is recommended to avoid being blocked by Instagram. However, it may increase download times. If you experience any issues, consider changing your proxy.

### Important Notes

1. **Proxy Usage**: If you are using a proxy, please ensure that it is correctly configured and you are using a reliable proxy group. This will help avoid IP blocking by Instagram.

2. **QuickTime Note for Mac Users**: If you are using macOS, the downloaded video may not work properly with QuickTime Player due to codec issues. In such cases, use a different media player like VLC, or convert the file format using a tool like FFmpeg.

3. **Video and Link Storage**: Every time the API runs:
   - The video download link is stored in one dataset.
   - The actual video is stored in another dataset, enabling easy access and management of the media files.

### Output

Upon a successful request, the API stores an item in the dataset the following format:

```json
{
  "download_link": "your_download_link_here",
  "status_code": 200
}
```

### Usage Example Python

The following example shows an full example of usage from running an actor to downloading the video on your device.

```python
import requests
import mimetypes
from apify_client import ApifyClient

## Initialize the ApifyClient with an API token
## (You can generate your own Apify API token for authentication)
apify_client = ApifyClient('your_apify_api_token')

## Define the input for the actor that downloads Instagram videos
actor_input = {
    "audioOnly": False,  # Set to True if you only want to download audio, False for full video
    "ffmpeg": True,  # Whether to use ffmpeg for processing
    "proxy": {
        "useApifyProxy": True,  # Enable the use of Apify Proxy
        "apifyProxyGroups": ["RESIDENTIAL"],  # Specify the proxy group to use (e.g., residential)
        "apifyProxyCountry": "HR"  # Set the country code for the proxy (e.g., HR for Croatia)
    },
    "url": "Instagram_url"  # The Instagram URL to download
}

## Start the actor on Apify and wait for it to finish
## (Replace 'demolitore/my-actor' with the actor you want to use)
actor_call = apify_client.actor('apilabs/instagram-downloader').call(run_input=actor_input)

## Retrieve the dataset associated with the Instagram downloader
my_dataset_client = apify_client.dataset('your_username/Instagram-Downloader')

## Fetch the most recent dataset entry, which contains the download link
l = my_dataset_client.list_items(limit=1, desc=True) #Get the only last element inserted
url = l.items[0]['download_link']  # Extract the download link from the dataset

## Download the file using the URL extracted from the dataset
response = requests.get(url)
## If the download is successful (status code 200), proceed to save the file
if response.status_code == 200:
    # Get the Content-Type from the response headers to infer the file extension
    content_type = response.headers.get('Content-Type')

    # Guess the appropriate file extension based on the Content-Type
    extension = mimetypes.guess_extension(content_type.split(';')[0])

    # Extract the base filename from the URL and append the correct file extension
    filename = url.split("/")[-1].split("?")[0]
    filename = f"{filename}{extension}"  # Combine the base filename with the extension

    # Save the file to the local disk in binary mode
    with open(filename, 'wb') as file:
        file.write(response.content)

    # Print success message with the saved filename
    print(f"File downloaded successfully as {filename}.")
else:
    # Print an error message if the download fails
    print(f"Failed to download file. Status code: {response.status_code}")
```

##### Disclaimer

This tool is intended for personal use and educational purposes only. Users are solely responsible for ensuring their use complies with Instagram's Terms of Service, applicable copyright laws, and any other relevant regulations.
Downloading copyrighted content without the rights holder's permission may be illegal in your jurisdiction. The developers of this tool do not condone piracy and accept no liability for misuse.

# Actor input Schema

## `urls` (type: `array`):

The URL of video you want to get the download.

## `quality` (type: `string`):

Choose the video quality. If the it is not available it will automatically download the nearest lower one.

## `audioOnly` (type: `boolean`):

Download only audio in mp3 format - Requires ffmpeg

## `ffmpeg` (type: `boolean`):

Slower but enables better quality, by merging the best video with the best audio

## `proxy` (type: `object`):

Select proxies to be used

## Actor input object example

```json
{
  "urls": [
    "https://www.instagram.com/reel/DBRWEljp0cf/"
  ],
  "quality": "1080",
  "audioOnly": false,
  "ffmpeg": true,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "urls": [
        "https://www.instagram.com/reel/DBRWEljp0cf/"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("apilabs/instagram-downloader").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "urls": ["https://www.instagram.com/reel/DBRWEljp0cf/"],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("apilabs/instagram-downloader").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "urls": [
    "https://www.instagram.com/reel/DBRWEljp0cf/"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call apilabs/instagram-downloader --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,apilabs/instagram-downloader"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/JXsyluUMPERGlag4K/builds/cg5wpS1mmOsn2H5Xu/openapi.json
