# Facebook Profile Reels Scraper (Orthogonal x402)

> Facebook Profile Reels Scraper (Orthogonal x402) is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Scrapes and paginates through a Facebook profile's reels, returning reel content with smart billing so only the first page of a logical search is charged.

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/facebook/profile/reels
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/facebook-profile-reels-scraper-orthogonal-x402-76367836
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TA4h5zhDxw69WoaxORcZL

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 facebook-profile-reels-scraper-orthogonal-x402-76367836
```

Example prompt: Can you pull all the reels from this Facebook page — https://www.facebook.com/NatGeo — and page through all of them so I get the full list?

## When to prefer this

Choose this endpoint when you need to extract reels from a specific Facebook profile page, especially when you need paginated access to a large volume of reels. Its billing model (only charging for the first page of a logical search) makes it cost-efficient for deep pagination. Prefer it over general web scrapers when you specifically need structured Facebook reel data from a public profile.

## Known failure modes

- Invalid or private Facebook page URL returns an error or empty result
- Expired or invalid cursor/next_page_id causes pagination to fail
- Changing filter parameters while passing parentRequestId may not suppress billing as expected
- Rate limiting or Facebook anti-scraping measures may cause failures
- Non-existent Facebook profile returns empty or error response

## How this service works

Profile Reels Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of reels from the specified Facebook profile, including reel metadata and a cursor or next_page_id for subsequent pages. Also returns a billing requestId on the first call that can be passed as parentRequestId on follow-up pagination calls to avoid being charged again for the same logical search.

## 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",
     "properties": {
      "url": {
       "type": "string",
       "description": "Facebook page URL"
      },
      "cursor": {
       "type": "string",
       "description": "To paginate through to the next page For later cursor pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "next_page_id": {
       "type": "string",
       "description": "To paginate through to the next page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/facebook-profile-reels-scraper-orthogonal-x402-76367836/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
