Insta Scraper avatar
Insta Scraper

Under maintenance

Pricing

$4.00 / 1,000 results

Go to Store
Insta Scraper

Insta Scraper

Under maintenance

Developed by

devdarkknight

devdarkknight

Maintained by Community

Quickly and easily scrape public metadata from any Instagram profile by providing the Instagram username. This actor efficiently fetches essential information like follower and following counts, bio text and links, full name, HD profile picture URL, and verification status.

0.0 (0)

Pricing

$4.00 / 1,000 results

1

Total users

3

Monthly users

3

Runs succeeded

>99%

Last modified

4 days ago

This Apify actor allows you to easily extract public metadata from any Instagram profile by providing the Instagram username. Get key details like follower count, bio information, and more with a simple input.

What it does

The Insta Scraper actor connects to Instagram and retrieves publicly available information for a specified user profile. It's designed to be fast and efficient, providing you with structured data about the profile.

Input

The actor requires a single piece of information: the Instagram username of the profile you want to scrape.

  • username: The Instagram username (e.g., instagram, apify). This is a required field.

Sample Input:

{
"username": "apify"
}

Output

The actor outputs a dataset containing the scraped metadata for the provided username. Each item in the dataset is a JSON object with the following fields:

  • username: The Instagram username that was scraped.
  • full_name: The full name displayed on the profile.
  • bio: The biography text from the profile.
  • bio_link: URLs included in the bio, separated by newlines if there are multiple.
  • pfp_url: The URL of the profile picture in high definition.
  • follow_count: The number of users this profile is following.
  • follower_count: The number of followers this profile has.
  • profile_url: The direct URL to the Instagram profile.
  • is_verified: A boolean indicating if the profile is verified.

Sample Output:

{
"username": "apify",
"full_name": "Apify",
"bio": "Apify is the platform for building, deploying, and running web scraping, data extraction, and web automation jobs.",
"bio_link": "https://apify.com/",
"pfp_url": "https://scontent.cdninstagram.com/v/t51.2885-19/...",
"follow_count": 123,
"follower_count": 4567,
"profile_url": "https://www.instagram.com/apify",
"is_verified": false
}