GET
/v1/resultsGet Results
Retrieve scraped Instagram posts data from your squidRetrieve Instagram posts data from your completed scraping tasks. The scraper extracts comprehensive post information including captions, engagement metrics, media URLs, comments, and metadata.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
Post Information
url
string
Example: https://www.instagram.com/p/ABC123/
post_id
string
Example: 3769351289982373597
shortcode
string
Example: DRPbQcBD07d
caption
string
Example: Amazing sunset at the beach! #sunset #nature
alt
string
Example: Photo by National Geographic on January 06, 2026
Owner Information
owner_username
string
Example: natgeo
owner_full_name
string
Example: National Geographic
owner_id
string
Example: 787132
Engagement Metrics
likes_count
integer
Example: 150000
comments_count
integer
Example: 2500
Timestamps
timestamp
bigint
Example: 1640000000
timestamp_datetime
datetime
Example: 2026-01-06T12:00:00+02:00
Post Type & Status
product_type
string
Example: carousel_container
media_type
string
Example: carousel
is_pinned
boolean
Example: false
is_paid_partnership
boolean
Example: false
Media URLs
display_url
string
Example: https://example.com/image.jpg
video_url
string
Example: https://example.com/video.mp4
reel_url
string
Example: https://www.instagram.com/reel/ABC123/
dimensions
string
Example: 1080x1350
image_1
string
Example: https://example.com/carousel/1.jpg
image_2
string
Example: https://example.com/carousel/2.jpg
image_3
string
Example: https://example.com/carousel/3.jpg
image_4
string
Example: https://example.com/carousel/4.jpg
image_5
string
Example: https://example.com/carousel/5.jpg
Carousel Media
carousel_media_count
integer
Example: 3
child_post_1
object
Example: {id: 123, media_type: 1, display_url: ..., height: 1350, width: 1080}
child_post_2
object
Example: {}
child_post_3
object
Example: {}
child_post_4 - child_post_10
object
Example: {}
Tags, Hashtags & Music
hashtags
array
Example: [#sunset, #nature, #photography]
user_tags
array
Example: [{pk: 123, username: tagged_user, ...}]
coauthors
array
Example: [{pk: 123, username: coauthor1, full_name: Co Author, ...}]
music
object
Example: {audio_cluster_id: 123, title: Song Title, display_artist: Artist Name, ...}
Comments
comment_1
object
Example: {comment_id: 123, text: Great post!, created_at: 1640000000, user: {user_id: 456, username: commenter1}}
comment_2 - comment_15
object
Example: {}
Metadata
scraping_time
datetime
Example: 2026-01-13T10:30:00+02:00
functions
object
Example: {}
Parameters
squidstring
RequiredExample:
YOUR_SQUID_HASHrunstring
OptionalExample:
RUN_HASHpageinteger
OptionalExample:
1page_sizeinteger
OptionalExample:
50Pro Tip
Use `timestamp_datetime` for easy date filtering and sorting of posts by publication time.
Note
Carousel posts include up to 10 child items with individual media URLs in `child_post_1` through `child_post_10`.
Pro Tip
Check `is_paid_partnership` to identify sponsored content and influencer collaborations.
Pro Tip
The `hashtags` array is useful for content categorization and trend analysis.