<< All versions
Skill v1.0.1
currentAutomated scan100/100gooseworks-ai/goose-skills/instagram-scraper
+2 new
──Details
PublishedAugust 22, 2026 at 03:11 PM
Content Hashsha256:40409838e171a84c...
Git SHA252343208564
Bump Typepatch
──Files
Files (1 file, 2.3 KB)
SKILL.md2.3 KBactive
SKILL.md · 108 lines · 2.3 KB
version: "1.0.1" name: instagram-scraper description: Get Instagram profiles, posts, and reels source: scrapecreators
Instagram Scraper
Setup
Read scrapecreators-api first. Execute every operation below through the runtime it selects: the GooseWorks MCP tool in terminal-free clients, the GooseWorks CLI in a local terminal, or the direct API with the user's own key. Never assume a shell is available.
Scrape public Instagram data including profiles, posts, and reels.
When to Use
- User asks about Instagram content
- User wants to see posts from an account
- Social media research
How It Works
Uses the ScrapeCreators API through its direct GooseWorks proxy.
Usage
Get User Profile & Posts
yaml
provider: scrapecreatorsmethod: GETpath: /v1/instagram/profilequery:handle: openai
Get Individual Post/Reel
yaml
provider: scrapecreatorsmethod: GETpath: /v1/instagram/postquery:url: https://instagram.com/p/abc123
Get Basic Profile by User ID
yaml
provider: scrapecreatorsmethod: GETpath: /v1/instagram/basic-profilequery:userId: "12345"
Parameters
Profile
- handle (required) - Instagram handle (without @)
- trim (optional) - Set to "true" for a trimmed response
Post/Reel
- url (required) - Instagram post or reel URL
- trim (optional) - Set to "true" for a trimmed response
Basic Profile
- userId (optional) - Instagram user ID
Response
Profile includes:
- Username, display name, bio
- Follower/following counts
- Recent posts with captions, URLs, engagement metrics
- Profile image
Post includes:
- Post caption
- Image/video URLs
- Like count
- Comment count
- Timestamp
Examples
User: "What's OpenAI posting on Instagram?" Use the Get User Profile & Posts operation with handle: openai.
User: "Get details on this Instagram post" Use the Get Individual Post/Reel operation with the supplied post URL.
Error Handling
- success: false — the API may temporarily fail; retry after a few seconds
- Private accounts cannot be accessed — no workaround
- Rate limiting may cause failures on rapid requests — add delays between calls
Tips
- Private accounts cannot be accessed
- Remove @ from handles
- API may return errors for rate limiting - retry after a few seconds