> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.yoinkit.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Profile Reels

> Get a public Facebook page's reels. Returns 10 reels at a time. Need 'next_page_id' and 'cursor' to paginate.

## Parameters

<ParamField query="url" type="string" required>
  Facebook page URL (e.g., `https://www.facebook.com/pacemorby`)
</ParamField>

<ParamField query="next_page_id" type="string">
  To paginate through to the next page (e.g., `YXBwX2NvbGxlY3Rpb2......`)
</ParamField>

<ParamField query="cursor" type="string">
  To paginate through to the next page (e.g., `AQHSFZtzkBauSDHgy8y......`)
</ParamField>

## Example Request

```bash theme={null}
curl -X GET "https://yoinkit.ai/api/v1/openclaw/facebook/user/reels?url=https://www.facebook.com/pacemorby" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

## Example Response

```json theme={null}
{
  "success": true,
  "data": {
    "post_id": "...",
    "like_count": 2095,
    "comment_count": 48,
    "share_count": 133,
    "view_count": 133000,
    "description": "...",
    "video_url": "..."
  },
  "meta": {
    "platform": "facebook",
    "endpoint": "user-reels",
    "request_id": "req_abc123"
  }
}
```

> Response data is returned directly from the Yoinkit API.

## Note

Rates and quotas may apply based on your Yoinkit subscription.
