Skip to main content
POST
/
reels
/
collect
cURL
curl -X POST "https://api.brightdata.com/reels/collect" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.instagram.com/reel/REEL_ID/"}'
{
  "post_id": "<string>",
  "description": "<string>",
  "hashtags": [
    "<string>"
  ],
  "date_posted": "<string>",
  "tagged_users": [
    "<string>"
  ],
  "num_comments": 123,
  "likes": 123,
  "views": 123,
  "video_play_count": 123,
  "length": 123,
  "user_posted": "<string>",
  "followers": 123,
  "posts_count": 123,
  "profile_image_link": "<string>",
  "is_verified": true,
  "profile_url": "<string>",
  "video_url": "<string>",
  "thumbnail": "<string>",
  "audio_url": "<string>"
}
The Reels API allows you to collect and discover Instagram Reels from public profiles using reel URLs or search-based discovery.

Collect by URL

This endpoint allows users to collect detailed data about an Instagram Reel by providing the reel URL.

Input Parameters

URL
string
required
The Instagram reel URL.

Output Structure

Includes detailed reel, profile, and media data. Reel details
  • post_id
  • description
  • hashtags
  • date_posted
  • tagged_users
  • num_comments
  • likes
  • views
  • video_play_count
  • length
  • and more
For the full list of fields,
View complete output reference
Profile details
  • user_posted
  • followers
  • posts_count
  • profile_image_link
  • is_verified
  • profile_url
We provide a limited set of data points about the profile.
Attachments and media
  • video_url
  • thumbnail
  • audio_url

For the full list of fields,
View complete output reference
Profile details
  • user_posted
  • followers
  • posts_count
  • following
Attachments and media
  • video_url
  • thumbnail
  • audio_url (link only, not the file itself)
This endpoint supports advanced reel discovery using filtering, exclusions, and date ranges, making it suitable for analytics and content tracking use cases.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
url
string<uri>
required

Instagram reel URL

Response

Reel data collected successfully

post_id
string
description
string
hashtags
string[]
date_posted
string
tagged_users
string[]
num_comments
integer
likes
integer
views
integer
video_play_count
integer
length
number
user_posted
string
followers
integer
posts_count
integer
is_verified
boolean
profile_url
string
video_url
string
thumbnail
string
audio_url
string