Social Fetch
Facebook

List Facebook profile reels

Lists public Facebook reels for a profile or page URL. Check `data.lookupStatus` for `found` vs `not_found`. Use `data.page.nextCursor` to request the next page when `data.page.hasMore` is true.

Operation

GET/v1/facebook/profiles/reels

Headers

x-api-keystringrequired(header)

API key (`sfk_...`)

Parameters

urlstringrequired(query)

Public Facebook profile or page URL whose reels should be listed.

min 1 chars · max 4096 chars

cursorstring(query)

Opaque pagination cursor from a previous response (`data.page.nextCursor`).

min 1 chars · max 4096 chars

Response fields

data
objectrequired

Endpoint-specific response payload.

datalookupStatus
stringrequired

Whether the requested profile or page resolved for this request.

one of: found, not_found

datareels
arrayrequired

Reels returned for the requested profile or page. This array may be empty on the last page.

datareels[]id
stringrequired

Stable reel identifier from Facebook.

min 1 chars

datareels[]postId
stringrequirednullable

Underlying Facebook post id when available.

datareels[]videoId
stringrequirednullable

Underlying Facebook video id when available.

datareels[]url
stringrequired

Public Facebook URL for this reel.

min 1 chars

datareels[]description
stringrequirednullable

Caption or description text when available.

datareels[]createdAt
stringrequirednullable

ISO-8601 timestamp for when the reel was created.

datareels[]viewCount
integerrequirednullable

View count when available.

≥ 0

datareels[]thumbnailUrl
stringrequirednullable

Thumbnail image URL when available.

datareels[]videoUrl
stringrequirednullable

Direct video URL when available.

datareels[]durationMs
integerrequirednullable

Play duration in milliseconds when available.

≥ 0

datareels[]music
objectrequirednullable

Music metadata when available.

datareels[]musictitle
stringrequirednullable

Music track title when available.

datareels[]author
objectrequirednullable

Author metadata when available.

datareels[]authorplatformUserId
stringrequirednullable

Facebook id for the reel author when available.

datareels[]authorname
stringrequirednullable

Display name for the reel author when available.

datareels[]authorisVerified
booleanrequirednullable

Whether Facebook marks the author as verified.

datareels[]authorurl
stringrequirednullable

Public Facebook URL for the author when available.

datareels[]authorimageUrl
stringrequirednullable

Profile image URL for the author when available.

datapage
objectrequired

Pagination information for the current response.

datapagenextCursor
stringrequirednullable

Cursor to pass as `cursor` in the next request when `hasMore` is true; otherwise null.

datapagehasMore
booleanrequired

Whether another page of reels can be requested.

meta
objectrequired

Metadata describing the request and billing outcome.

metarequestId
stringrequired

Unique request identifier for tracing this API call.

min 1 chars

metacreditsCharged
integerrequired

Credits charged for this request.

≥ 0

metaversion
stringrequired

Public API version that served the response.

one of: v1

Code example

Responses

Facebook reels for the requested profile or page. Check `data.lookupStatus` for `found` vs `not_found`.

Error codes

bad_requestinsufficient_creditsinternal_errorlookup_failedtemporarily_unavailableunauthorized

On this page