GET/v2/squid/{squid_id}/result

Get Results

Retrieve scraped Instagram reels data from your squid

Retrieve Instagram reels data from your completed scraping tasks. The scraper extracts comprehensive reel information including engagement metrics, media URLs, music info, and comments.

Reel Information Fields

reel_id
string
Unique Instagram reel ID
Example: 3456789012345678901
shortcode
string
Short code used in reel URL
Example: C7AbCdEfGhI
reel_url
string
Full URL to the reel
Example: https://www.instagram.com/reel/C7AbCdEfGhI/
caption
string
Reel caption text
Example: Building cool stuff with Python #coding
hashtags
string
Comma-separated hashtags from caption
Example: coding, devlife, python
mentions
string
Comma-separated mentioned usernames
Example: nike, adidas
tagged_users
array
Users tagged in the reel
Example: [user1, user2]
timestamp
datetime
When the reel was posted
Example: 2025-01-15T14:22:05+00:00
product_type
string
Content type identifier
Example: clips

Owner/Creator Fields

owner_username
string
Username of reel creator
Example: leomessi
owner_full_name
string
Display name of creator
Example: Leo Messi
owner_id
string
Instagram user ID of creator
Example: 427553890
co_authors
array
Collaborators/co-authors on the reel
Example: [@brandpartner, @creator2]

Engagement Metrics

likes_count
integer
Number of likes
Example: 125430
comments_count
integer
Number of comments
Example: 1523
views_count
integer
Number of views
Example: 2456789
is_sponsored
boolean
Whether the reel is a paid partnership
Example: false
comments_disabled
boolean
Whether comments are disabled
Example: false
like_and_view_counts_disabled
boolean
Whether counts are hidden
Example: false
can_viewer_reshare
boolean
Whether resharing is allowed
Example: true

Media Fields

video_url
string
Direct URL to video file
Example: https://scontent.cdninstagram.com/v/...
display_url
string
Thumbnail/cover image URL
Example: https://scontent.cdninstagram.com/v/...
video_duration_seconds
float
Duration of the reel in seconds
Example: 27.5
media_dimensions
string
Video dimensions (width x height)
Example: 1080x1920
location_id
string
Tagged location ID
Example: 123456789
location_name
string
Tagged location name
Example: Miami, Florida

Music Information

music_info.artist_name
string
Name of the music artist
Example: Drake
music_info.song_name
string
Name of the song
Example: God's Plan
music_info.audio_id
string
Instagram audio track ID
Example: 1234567890
music_info.uses_original_audio
boolean
Whether it uses creator's original audio
Example: false
music_info.is_trending
boolean
Whether the audio is trending
Example: true
music_info.is_explicit
boolean
Whether audio is marked explicit
Example: false

Top Comments

comment1.user
string
Username of commenter
Example: username1
comment1.text
string
Comment text
Example: Great video!
comment1.replies_count
integer
Number of replies to comment
Example: 5

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 `video_url` to download the actual reel video for archival or analysis.
Note

Note

Video URLs are temporary CDN links that may expire. Download media promptly after scraping.
Pro Tip

Pro Tip

Filter trending content by checking `music_info.is_trending` to find reels using viral audio.