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
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.
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.
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:
The following example shows an full example of usage from running an actor to downloading the video on your device.
1import requests
2import mimetypes
3from apify_client import ApifyClient
45# Initialize the ApifyClient with an API token6# (You can generate your own Apify API token for authentication)7apify_client = ApifyClient('your_apify_api_token')89# Define the input for the actor that downloads Instagram videos10actor_input ={11"audioOnly":False,# Set to True if you only want to download audio, False for full video12"ffmpeg":True,# Whether to use ffmpeg for processing13"proxy":{14"useApifyProxy":True,# Enable the use of Apify Proxy15"apifyProxyGroups":["RESIDENTIAL"],# Specify the proxy group to use (e.g., residential)16"apifyProxyCountry":"HR"# Set the country code for the proxy (e.g., HR for Croatia)17},18"url":"Instagram_url"# The Instagram URL to download19}2021# Start the actor on Apify and wait for it to finish22# (Replace 'demolitore/my-actor' with the actor you want to use)23actor_call = apify_client.actor('apilabs/instagram-downloader').call(run_input=actor_input)2425# Retrieve the dataset associated with the Instagram downloader26my_dataset_client = apify_client.dataset('your_username/Instagram-Downloader')2728# Fetch the most recent dataset entry, which contains the download link29l = my_dataset_client.list_items(limit=1, desc=True)#Get the only last element inserted30url = l.items[0]['download_link']# Extract the download link from the dataset3132# Download the file using the URL extracted from the dataset33response = requests.get(url)34# If the download is successful (status code 200), proceed to save the file35if response.status_code ==200:36# Get the Content-Type from the response headers to infer the file extension37 content_type = response.headers.get('Content-Type')3839# Guess the appropriate file extension based on the Content-Type40 extension = mimetypes.guess_extension(content_type.split(';')[0])4142# Extract the base filename from the URL and append the correct file extension43 filename = url.split("/")[-1].split("?")[0]44 filename =f"{filename}{extension}"# Combine the base filename with the extension4546# Save the file to the local disk in binary mode47withopen(filename,'wb')asfile:48file.write(response.content)4950# Print success message with the saved filename51print(f"File downloaded successfully as {filename}.")52else:53# Print an error message if the download fails54print(f"Failed to download file. Status code: {response.status_code}")
Frequently Asked Questions
Is it legal to scrape job listings or public data?
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
Do I need to code to use this scraper?
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
What data does it extract?
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Can I scrape multiple pages or filter by location?
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
How do I get started?
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!