# SocialFetch Facebook Profile Reels Lister

> SocialFetch Facebook Profile Reels Lister is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Lists Reels from a public Facebook profile or Page, with pagination support.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/facebook/profiles/reels
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-facebook-profile-reels-lister-374c4520
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_28WIt4mw2GgHnapes5c8I

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-facebook-profile-reels-lister-374c4520
```

Example prompt: Can you list all the reels from this Facebook page? Here's the URL: https://www.facebook.com/NationalGeographic

## When to prefer this

Use this endpoint when you need to enumerate Reels from a specific public Facebook profile or Page by URL, especially when pagination through a large reel library is needed. Prefer this over Instagram reel endpoints when the target content lives on Facebook specifically.

## Known failure modes

- Invalid or private Facebook URL returns no results or an error
- Expired or invalid pagination cursor causes a failed paginated request
- Non-Facebook URL passed as the url parameter returns an error
- Rate limiting or access restrictions on the target profile
- Facebook profile has no reels resulting in an empty list

## How this service works

List Reels from a Facebook profile or Page.

## Output

A list of Reels from the specified Facebook profile or Page, including reel metadata, and an opaque nextCursor token for paginating through additional results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Public Facebook profile or page URL whose reels should be listed."
      },
      "cursor": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Opaque pagination cursor from a previous response."
      },
      "hostMedia": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "enum": [
          "0",
          "1",
          "true",
          "false"
         ],
         "type": "string"
        }
       ],
       "description": "When true, hosts source media for 90 days and returns delivery URLs in each reel's `hostedMedia`."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-facebook-profile-reels-lister-374c4520/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
