Skip to main content
GET
/
v1
/
scrape
/
facebook
/
profile
/
reels
Profile Reels
curl --request GET \
  --url https://api.sociavault.com/v1/scrape/facebook/profile/reels \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "reels": [
    {
      "id": "UzpfSTEwMDA2NDAyNzI0Mjg0OTpWSzoxMTE0MjM1OTIwNjY0NDA4",
      "post_id": "1203161005161463",
      "creation_time": "2025-09-13T20:51:28.000Z",
      "url": "https://www.facebook.com/reel/1114235920664408",
      "view_count": 900,
      "feedback_id": "ZmVlZGJhY2s6MTIwMzE2MTAwNTE2MTQ2Mw==",
      "description": "#globetheatreregina #GrandOpeningGlobeTheatre #yqrfood",
      "video_id": "1114235920664408",
      "thumbnail": "https://scontent.fsjc1-3.fna.fbcdn.net/v/t15.5256-10/548161090_781902490913426_4425148471361535737_n.jpg",
      "play_time_in_ms": 22035,
      "video_url": "https://video.fsjc1-3.fna.fbcdn.net/o1/v/t2/f2/m366/AQOiS3S8KcKF2LNoPO0zOfAI3fDrZ4uUOgoNDGn6c7r8ABcujOm_egeBIp1UGt2C3T7bjmweRUAe6zZv183Qj3dpOTyUglIVsXGSEDb37A.mp4",
      "music": {
        "id": "1491450028648565",
        "track_title": "The Copper Kettle Restaurant · Original audio"
      },
      "author": {
        "id": "100064027242849",
        "name": "The Copper Kettle Restaurant",
        "is_verified": false,
        "url": "https://www.facebook.com/copperkettleyqr",
        "image": "https://scontent.fsjc1-3.fna.fbcdn.net/v/t39.30808-1/298528699_436705561807015_4191178501684731329_n.jpg"
      }
    }
  ],
  "credits_remaining": 3393,
  "cursor": "AQHSiBn76EsmuU....",
  "next_page_id": "YXBwX2NvbGxlY...."
}
💳 1 credit per request

Authorizations

X-API-Key
string
header
required

API key for authentication. Format: sk_live_xxxxxxxxxxxxx

Get your API key from the Dashboard.

Query Parameters

url
string
required

Facebook page URL

Example:

"https://www.facebook.com/pacemorby"

next_page_id
string

To paginate through to the next page. Must be used together with 'cursor' parameter.

Example:

"YXBwX2NvbGxlY3Rpb2......"

cursor
string

To paginate through to the next page. Must be used together with 'next_page_id' parameter.

Example:

"AQHSFZtzkBauSDHgy8y......"

Response

Successful response

Key Response Fields:

  • reels[0].video_url: The URL of the video
  • reels[0].thumbnail: Thumbnail image URL
  • reels[0].view_count: Number of views
  • reels[0].play_time_in_ms: Video duration in milliseconds
  • cursor: Use for pagination
  • next_page_id: Use for pagination
success
boolean
required
Example:

true

reels
object[]
required
credits_remaining
integer
Example:

3393

cursor
string
Example:

"AQHSiBn76EsmuU...."

next_page_id
string
Example:

"YXBwX2NvbGxlY...."