GET/v2/squid/{squid_id}/result

Get Results

Retrieve scraped Instagram profile data from your squid

Retrieve Instagram profile data from your completed scraping tasks. The scraper extracts comprehensive profile information including bio, stats, business details, and latest posts.

Profile Information

profile_url
string
Full Instagram profile URL
Example: https://www.instagram.com/leomessi/
username
string
Instagram username
Example: leomessi
full_name
string
Display name
Example: Leo Messi
biography
string
Profile bio text
Example: Welcome to my official Instagram account
profile_pic_url
string
Profile picture URL
Example: https://scontent.cdninstagram.com/...
profile_id
bigint
Instagram user ID
Example: 427553890
fbid
bigint
Facebook ID (linked account)
Example: 123456789

Profile Statistics

followers_count
integer
Number of followers
Example: 500000000
follows_count
integer
Number of accounts followed
Example: 500
posts_count
integer
Total number of posts
Example: 1000
highlight_reel_count
integer
Number of story highlights
Example: 5
igtv_video_count
integer
Number of IGTV videos
Example: 12

Account Type Flags

is_private
boolean
Whether profile is private
Example: false
is_verified
boolean
Whether profile has blue checkmark
Example: true
is_business_account
boolean
Whether it's a business account
Example: true
is_professional_account
boolean
Whether it's a professional account
Example: true
joined_recently
boolean
Whether account was created recently
Example: false
has_clips
boolean
Whether profile has Reels
Example: true
has_guides
boolean
Whether profile has Guides
Example: false
has_channel
boolean
Whether profile has a broadcast channel
Example: false

Business Information

category
string
Business category
Example: Athlete
business_email
string
Public business email
Example: contact@example.com
business_phone_number
string
Public business phone
Example: +1234567890
business_contact_method
string
Preferred contact method
Example: CALL

External Links

external_url_1
object
First external link
Example: {url: https://example.com, link_type: external}
external_url_2
object
Second external link
Example: {url: https://shop.example.com, link_type: external}
all_external_urls
array
Array of all external URLs
Example: [{url: ..., link_type: external}]

Content Availability

latest_igtv_video_1
object
First IGTV video with id, shortcode, url, title, caption, duration, views, likes, comments
Example: {id: 123, title: My Video, ...}
latest_igtv_video_2
object
Second IGTV video
Example: {}
latest_igtv_video_3
object
Third IGTV video
Example: {}
latest_igtv_video_4
object
Fourth IGTV video
Example: {}

Latest Posts

latest_post_1.id
string
Post ID
Example: 987654321
latest_post_1.shortcode
string
Post shortcode for URL
Example: XYZ789
latest_post_1.url
string
Post URL
Example: https://www.instagram.com/p/XYZ789/
latest_post_1.type
string
Content type (GraphImage, GraphVideo, GraphSidecar)
Example: GraphImage
latest_post_1.caption
string
Post caption
Example: Great day!
latest_post_1.likes
integer
Number of likes
Example: 15000
latest_post_1.comments
integer
Number of comments
Example: 500
latest_post_1.posted_at
integer
Unix timestamp of post
Example: 1640100000
latest_post_1.display_url
string
Image/thumbnail URL
Example: https://...
latest_post_1.location
string
Tagged location
Example: Miami
latest_post_1.tagged_users
array
Users tagged in post
Example: [{username: friend1}]

Headers

KeyValueRequired
AuthorizationToken YOUR_API_KEYYes

Parameters

limitinteger
Optional
Number of results per page (default: 10, max: 100)
Example: 10
offsetinteger
Optional
Number of results to skip for pagination
Example: 0
Pro Tip

Pro Tip

Use `is_business_account` to filter for business profiles that have public contact information.
Note

Note

Private accounts (`is_private: true`) return limited data - only basic profile info is available.
Pro Tip

Pro Tip

Check `business_email` and `business_phone_number` for lead generation from professional accounts.