VOOZH about

URL: https://apify.com/crawlerbros/instagram-post-scraper

โ‡ฑ Instagram Post Scraper ยท Apify


Pricing

from $0.50 / 1,000 results

Go to Apify Store

Instagram Post Scraper

Scrape public Instagram posts, reels, IGTV and carousel posts from direct URLs with no login, no cookies, no browser required. Supply a list of Instagram links and receive a structured dataset with author details, caption, media URLs, engagement counts, publish date, music, location, and more.

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

7

Total users

5

Monthly active users

a day ago

Last modified

Share

Scrape public Instagram posts, reels, IGTV and carousel posts from direct URLs โ€” no login, no cookies, no browser required. Supply a list of Instagram links (/p/, /reel/, /reels/, /tv/, or the canonical username/p/shortcode format) and receive a structured dataset with author details, caption, media URLs, engagement counts, publish date, music, location, and more. Handles batches of 10,000 URLs per run with per-IP proxy rotation that keeps pace fast even under rate limiting.

What this actor does

  • Scrape posts by URL โ€” accepts any mix of /p/, /reel/, /reels/, /tv/, and canonical username/p/shortcode links in a single run
  • Full media extraction โ€” returns direct CDN URLs for every photo, video, reel and carousel item, including per-item resolution and duration
  • Rich author data โ€” username, display name, verified status, follower count, post count, and profile picture URL
  • Engagement metrics โ€” like count, comment count, play count, video duration, and whether likes are publicly hidden
  • Captions, hashtags, and mentions โ€” caption text parsed with hashtags and @mentions extracted as separate arrays
  • Location and music โ€” tagged location (name, coordinates) and reel music (artist, title, audio ID) when present
  • Status tracking โ€” every input URL produces a record; inaccessible, deleted, age-restricted, and invalid URLs each carry a clear status value so no URL is silently lost
  • Scale without blocks โ€” per-IP cooldown with exponential back-off, automatic slot recycling, and UUID-prefixed sessions that guarantee fresh IPs on every run

Output per post record

Always present

  • status โ€” scrape outcome: success, not_found, invalid_url, error, or blocked (see Status values section below)
  • post_url โ€” full Instagram post URL (https://www.instagram.com/p/{shortcode}/)
  • shortcode โ€” the post's unique shortcode identifier
  • scraped_at โ€” ISO 8601 timestamp of when the record was scraped
  • hashtags โ€” array of hashtags found in the caption (empty array [] when none)
  • mentions โ€” array of @mentioned usernames in the caption (empty array when none)
  • tagged_users โ€” array of usernames tagged in the post media (empty array when none)
  • collaborators โ€” array of co-author usernames (empty array when none)
  • caption โ€” full caption text (empty string "" when there is no caption)
  • likes_hidden โ€” true if the author has hidden like counts, false otherwise
  • comments_disabled โ€” true if comments are turned off on the post, false otherwise

Present on successfully scraped posts (status: success)

  • post_id โ€” Instagram's internal numeric post ID
  • username โ€” author's Instagram username
  • full_name โ€” author's display name
  • owner_id โ€” author's numeric account ID
  • profile_url โ€” full URL to the author's Instagram profile
  • is_verified โ€” true if the author has a verified badge
  • owner_profile_pic_url โ€” CDN URL of the author's profile picture
  • owner_is_business โ€” true if the account is a business account
  • owner_followers โ€” author's follower count
  • owner_post_count โ€” total number of posts on the author's profile
  • pub_date โ€” ISO 8601 publish timestamp
  • media_type โ€” one of Photo, Video, Reel, IGTV, or Carousel
  • media_count โ€” number of media items (always 1 except for carousels)
  • media_urls โ€” array of direct CDN URLs for each media item
  • thumbnail_url โ€” CDN URL of the post thumbnail image
  • like_count โ€” number of likes (null when likes_hidden is true)
  • comment_count โ€” number of comments
  • media_items โ€” array of per-item objects, each with index, type, url, width, height. Single-item array for photos, videos, reels, and IGTV; multi-item array for carousels. Video items also include duration and has_audio
  • dimensions โ€” {width, height} object of the primary media item

Present only for video, reel, and IGTV posts

  • play_count โ€” total view / play count
  • video_duration โ€” duration in seconds (float)
  • has_audio โ€” true if the video has an audio track

Present only when location is tagged

  • location โ€” object with name, id, slug, lat, lng

Present only for reels with music attribution

  • music โ€” object with artist, title, audio_id, is_trending

Present only for paid partnerships

  • sponsor_tags โ€” array of sponsor usernames
  • is_paid_partnership โ€” true if the post is a paid partnership

Present only for posts with accessibility captions

  • accessibility_caption โ€” auto-generated accessibility description of the image

Status values

Every input URL โ€” whether valid or not โ€” produces exactly one output record with a status field:

StatusMeaning
successPost scraped successfully; all fields populated
not_foundPost is deleted, made private, or requires login to view (includes age-restricted content)
invalid_urlThe URL is not a recognisable Instagram post link
errorUnexpected failure after all retry attempts
blockedAll proxy IPs were exhausted before the post could be fetched

Age-restricted content

Instagram age-gates some posts (alcohol brands, adult content) at the API level. Without a logged-in session the anonymous endpoint returns a not-found response for these posts โ€” they appear with status: "not_found" rather than raising an error. This is a server-side restriction; no workaround exists without authentication.

Input

FieldTypeRequiredDescription
post_urlsarrayyesInstagram post, reel, or IGTV URLs. Accepts /p/, /reel/, /reels/, /tv/, and username/p/shortcode formats. Duplicates are silently de-duplicated. Up to 10,000 URLs per run

Example: scrape a single post

{
"post_urls":[
"https://www.instagram.com/p/DUtk38cj2TA/"
]
}

Example: mixed batch of posts, reels, and canonical URLs

{
"post_urls":[
"https://www.instagram.com/p/DUtk38cj2TA/",
"https://www.instagram.com/reel/C9uzjsSpHJC/",
"https://www.instagram.com/leomessi/p/DZifppZj_cB/",
"https://www.instagram.com/tv/CQa7HaGlRPD/"
]
}

Example: large batch

{
"post_urls":[
"https://www.instagram.com/p/DUtk38cj2TA/",
"... (up to 10,000 URLs)"
]
}

Example output

{
"status":"success",
"post_url":"https://www.instagram.com/p/DUtk38cj2TA/",
"shortcode":"DUtk38cj2TA",
"post_id":"3672810928374650123",
"username":"natgeo",
"full_name":"National Geographic",
"owner_id":"787132",
"profile_url":"https://www.instagram.com/natgeo/",
"is_verified":true,
"owner_profile_pic_url":"https://scontent.cdninstagram.com/v/...",
"owner_is_business":false,
"owner_followers":284000000,
"owner_post_count":32400,
"caption":"The ancient forest at dawn. #nature #wildlife #photography",
"hashtags":["nature","wildlife","photography"],
"mentions":[],
"pub_date":"2025-11-12T08:30:00+00:00",
"media_type":"Photo",
"media_count":1,
"media_urls":["https://scontent.cdninstagram.com/v/...jpg"],
"media_items":[
{"index":1,"type":"Photo","url":"https://scontent.cdninstagram.com/v/...jpg","width":1080,"height":1350}
],
"thumbnail_url":"https://scontent.cdninstagram.com/v/...jpg",
"dimensions":{"width":1080,"height":1350},
"like_count":482910,
"comment_count":3204,
"likes_hidden":false,
"comments_disabled":false,
"tagged_users":[],
"collaborators":[],
"is_paid_partnership":false,
"scraped_at":"2025-11-12T09:14:33.421000+00:00"
}

Records for inaccessible or invalid URLs look like this:

{"status":"not_found","post_url":"https://www.instagram.com/p/DELETED123/","shortcode":"DELETED123","scraped_at":"..."}
{"status":"invalid_url","post_url":"https://www.google.com/","scraped_at":"..."}

Age-restricted and private content

Instagram does not expose age-gated content through its anonymous API. Posts from accounts that require age verification (alcohol brands, adult content) return status: "not_found" rather than producing a data record. Private account posts behave the same way. This is a server-side restriction enforced by Instagram and cannot be bypassed without authenticated session cookies.

Content typestatusData returned
Public postsuccessAll fields
Deleted postnot_foundpost_url, shortcode, scraped_at
Private postnot_foundpost_url, shortcode, scraped_at
Age-restricted postnot_foundpost_url, shortcode, scraped_at
Invalid URL formatinvalid_urlpost_url, scraped_at

Use cases

  • Competitor content analysis โ€” track post frequency, engagement rates, media types and captions across competitor accounts to benchmark your own content strategy
  • Influencer vetting โ€” verify follower counts, engagement ratios and posting history before signing a partnership deal
  • Brand monitoring โ€” collect all posts tagged with your brand name or product from any source URL and feed them into a monitoring dashboard
  • Social media archiving โ€” create a permanent structured archive of a campaign's posts before content is deleted or made private
  • Research and journalism โ€” gather public post metadata at scale for academic studies on misinformation, trends, or audience behaviour
  • Content repurposing โ€” extract caption text and media URLs from your own posts to migrate or republish content across platforms
  • Hashtag performance tracking โ€” scrape posts sharing a known hashtag to measure reach and identify top-performing formats
  • E-commerce product research โ€” collect posts from brand accounts to analyse product launches, promotions and customer response

FAQ

Do I need an Instagram account or cookies to use this actor? No. This actor scrapes public posts anonymously without any login, cookies, or account credentials. No authentication is required for publicly accessible content.

Why do some posts return status: "not_found"? A not_found status means Instagram's API returned no data for that URL. This happens when a post has been deleted, made private, or when the post is from an age-restricted account (such as alcohol brands or accounts requiring age verification). These are server-side restrictions that cannot be bypassed without an authenticated session.

Why is like_count missing on some posts? When an author hides their like counts, Instagram does not return the figure in the API response. The record will have likes_hidden: true and like_count will be absent from the output.

How many URLs can I submit in one run? Up to 10,000 URLs per run. The actor automatically uses residential proxies with per-IP session rotation to handle large batches reliably โ€” no proxy configuration is required on your end.

How fresh is the data? Data is scraped live at the time of the run. Post metadata reflects the current state of Instagram at the moment of scraping โ€” including the latest like and comment counts.

What URL formats are supported? The actor accepts /p/, /reel/, /reels/, and /tv/ links, as well as canonical username/p/shortcode URLs (e.g. https://www.instagram.com/natgeo/p/DUtk38cj2TA/). Duplicate URLs pointing to the same post are automatically de-duplicated.

Is this actor affiliated with Instagram or Meta? No. This is an independent third-party tool that automates interaction with the public Instagram website. It is not endorsed by or affiliated with Meta Platforms, Inc.

Other Instagram Scrapers

Want to get other data from Instagram? Check out our complete suite of Instagram scrapers:

ActorDescription
Instagram Comment ScraperScrape comments from any Instagram post or reel
Instagram Profile ScraperExtract profile data, bio, follower counts, and more
Instagram Followers & Following ScraperScrape followers and following lists from any profile
Instagram Tagged Posts ScraperCollect posts where a user has been tagged
Instagram Hashtag ScraperScrape posts and profiles by hashtag
Instagram Story DownloaderDownload stories from Instagram profiles
Instagram Downloader APIDownload photos, videos, and reels from Instagram
Instagram Keyword ScraperSearch and scrape posts by keyword
Instagram Keyword Search ScraperSearch Instagram accounts and posts by keyword
Instagram Transcript ScraperExtract transcripts from Instagram video content

You might also like

Instagram Posts/Reels Scraper - No Cookies

queenlike_xystos/instagram-posts-reels-scraper---no-cookies

The Instagram Posts & Reels Scraper extracts posts, reels, and carousel media from any public instagram profile โ€” no login or cookies required. Simply provide a username, select your scrape type, and receive clean, structured JSON data for every post or reel.

Instagram Scraper

rupom888/instagram-scraper-js

Scrape Instagram posts, profiles, hashtags, reels, and location pages. Extract likes, comments, captions, media URLs, author stats, and more. No Instagram login required for public content.

Instagram Hashtag Posts Scraper

khadinakbar/instagram-hashtag-scraper

Scrape public Instagram posts and Reels for one or more hashtags. Exports captions, engagement counts, author metadata, media URLs, comments when available, cursor metadata, and run summaries. No Instagram cookies required.

89

Instagram Post Scraper โœ… No cookies โœ… $1 per 1K

supreme_coder/instagram-post-scraper

Scrape instagram posts or reels from user profiles, hashtags, post urls

2

Instagram Posts & Reels Scraper

seemuapps/instagram-posts-scraper

Scrape all posts and Reels from any public Instagram profile โ€” captions, like, comment and view counts, hashtags, media URLs, and author details.

Instagram Posts Scraper

parseforge/instagram-posts-scraper

Extract Instagram posts, engagement metrics, and profile data from user profiles, individual posts, or Reels. Supports multiple input formats (usernames, profile URLs, post URLs) with date filtering. No login required. Perfect for social media analysis, competitor research, and content monitoring.

297

2.2

Instagram Downloader - Reels, Stories, IGTV (No Watermark)

convertfleetdotonline/instagram-downloader

Download Instagram Reels, posts, IGTV videos and Stories in original HD quality. Direct CDN URLs. No watermark. No login required for public content.

7