MindStudio Docs
  • Get Started
    • Overview
    • MindStudio Chrome Extension
    • Quickstart Guide
    • What is an AI Agent?
    • AI Agent Use Cases
  • Free vs. Paid AI Agents
  • Building AI Agents
    • Editor Overview
    • Workflow Generator
    • Writing Prompts
      • Templating
    • AI Models
    • Variables
      • Working with JSON
      • Using Handlebars Templating
    • Dynamic Variables
    • Data Sources
    • Automations
      • Start Block
      • Generate Text Block
      • Generate Image Block
      • Generate Chart Block
      • Generate Asset Block
      • Display Content Block
      • Text to Speech Block
      • Analyze Image Block
      • User Input Block
      • User Context Block
      • Query Data Block
      • Run Function Block
      • Scrape URL Block
      • Extract Text from File Block
      • Post to Slack Block
      • Menu Block
      • Logic Block
      • Checkpoint Block
      • Jump Block
      • Run Workflow Block
      • Terminator Block
    • Integrations
      • Search Bluesky Posts
      • Scrape Facebook Page
      • Scrape Meta Threads Profile
      • Scrape Instagram Comments
      • Scrape Instagram Mentions
      • Scrape Instagram Posts
      • Scrape Instagram Profile
      • Scrape Instagram Reels
      • Create LinkedIn Post
      • Create X Post
      • Search X Posts
      • Search Google
      • Search Google Images
      • Search Google Trends
      • Search Google News
      • Create Google Doc
      • Fetch Google Doc
      • Update Google Doc
      • Create Google Sheet
      • Fetch Google Sheet
      • Update Google Sheet
      • Enrich Company via Domain
      • Find Contact Email for Website
      • Find Email
      • Verify Email
      • Enrich Person via Email
      • Fetch YouTube Captions
      • Fetch YouTube Channel
      • Fetch YouTube Comments
      • Fetch YouTube Video
      • Search YouTube
      • Search YouTube Trends
      • Create Notion Page
      • Update Notion Page
      • Apify
      • Run Scenario
      • Post to Slack
      • HTTP Request
      • Run Node
      • Create Contact
      • Add Note
      • Send Email
      • Send SMS
    • Publishing & Versioning
  • Embedding AI Agents
  • Using Webhooks
  • Workspace Management
    • Workspace Overview
    • Workspace Settings
    • Usage Explorer
    • Billing Settings
    • Account Settings
    • Team Settings & Access Controls
  • Test & Evaluate
    • Testing Suite Overview
    • Evaluations
    • Profiler
    • Debugger
  • Integration Guides
    • Zapier + MindStudio
    • Make.com + MindStudio
    • n8n + MindStudio
  • Developers
    • API Reference
    • NPM Package
    • Custom Workflow Functions
  • Additional Resources
    • Glossary
    • Allowing Access to Mindstudio From Your Network
  • Solutions
    • MindStudio Solutions Partners
    • MindStudio For Developers
    • MindStudio for Enterprises
Powered by GitBook
On this page
  • Configuration
  • Post URL
  • Output Variable
  • Advanced Settings
  • Sample Output
Export as PDF
  1. Building AI Agents
  2. Integrations

Scrape Instagram Comments

Get Comments data from an Instagram post in a MindStudio workflow

Last updated 15 days ago

Configuration

Post URL

Enter the Instagram post/reel URL you want to scrape.

This section can include variables.

Output Variable

Specify the name of the output variable that will store the results. Example: Comments

Advanced Settings

Result Limit: Set the amount max amount of comments you want to scrape. The default is set to 20 comments.

Sample Output

[
  {
    "postUrl": "https://example.com/post/1",
    "id": "sample_id_1",
    "text": "Sample comment text",
    "ownerUsername": "user1",
    "ownerProfilePicUrl": "https://example.com/profile_pic.jpg",
    "timestamp": "2025-03-06T13:30:39.000Z",
    "repliesCount": 0,
    "replies": [],
    "likesCount": 32,
    "owner": {
      "fbid_v2": 12345678,
      "full_name": "John Doe",
      "id": "sample_user_id",
      "is_mentionable": false,
      "is_private": false,
      "is_verified": false,
      "username": "sample_username"
    }
  },
  {
    "postUrl": "https://example.com/post/2",
    "id": "sample_id_2",
    "text": "Another comment",
    "ownerUsername": "user2",
    "ownerProfilePicUrl": "https://example.com/profile_pic2.jpg",
    "timestamp": "2025-03-06T14:38:31.000Z",
    "repliesCount": 0,
    "replies": [],
    "likesCount": 0,
    "owner": {
      "fbid_v2": 87654321,
      "full_name": "Jane Smith",
      "id": "another_user_id",
      "is_mentionable": true,
      "is_private": false,
      "is_verified": false,
      "username": "another_username"
    }
  }
]