Facebook API

Facebook Profile reels API

List a page’s reels by URL with cursor pagination: caption, view count, permalink and thumbnail.

POST/v1/run/facebook.profile_reels
Uptime
100.00%
30d · 1 call
Requests
1
30d · weekly, last 12 wks
Response
3.6s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "found": true,
  "data": {
    "reels": [
      {
        "id": "UzpfSTEwMDA2NDAyNzI0Mjg0OTpWSzox",
        "url": "https://www.facebook.com/reel/1114235920664408",
        "caption": "Inside the rocket assembly building 🚀",
        "views": 900000,
        "thumbnail": "https://facebook.com/reel/1114235920664408/thumb.jpg",
        "createdAt": "2025-09-13T20:51:28.000Z"
      }
    ]
  }
}
Response interface
interface FacebookProfileReelsResponse {
  data: {
    reels: {
      caption: string;
      createdUtc: number;
      id: string;
      thumbnail: string;
      url: string;
      views: number;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-14 · uptime and latency measured over 30d
POST /v1/run/facebook.profile_reels
curl -X POST https://api.getanyapi.com/v1/run/facebook.profile_reels \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.facebook.com/nasa"}'
FieldTypeExample value
Request body
urlstring"https://www.facebook.com/nasa"Full Facebook page/profile URL.
cursorstringPagination cursor from a previous response.
Response
foundbooleantrue
dataobject
data.reelsarray
data.reels[].idstring"UzpfSTEwMDA2NDAyNzI0Mjg0OTpWSzox"
data.reels[].urlstring"https://www.facebook.com/reel/1114235920664408"
data.reels[].captionstring"Inside the rocket assembly building 🚀"
data.reels[].viewsnumber900000
data.reels[].thumbnailstring"https://facebook.com/reel/1114235920664408/thumb.jpg"
data.reels[].createdAtstring"2025-09-13T20:51:28.000Z"
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Facebook Profile reels API

The AnyAPI Facebook Profile reels API returns Facebook profile reels data as normalized JSON from one POST call to /v1/run/facebook.profile_reels. List a page’s reels by URL with cursor pagination: caption, view count, permalink and thumbnail. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Facebook profile reels calls through AnyAPI succeeded, with a median response time of 3.6 seconds across 1 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List a page’s reels by URL with cursor pagination: caption, view count, permalink and thumbnail. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Facebook profile reels calls through AnyAPI succeeded, with a median response time of 3.6 seconds across 1 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.