# Facebook Profile Posts Scraper

> Facebook Profile Posts Scraper 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).

Fetches paginated posts from a Facebook profile page by URL or page ID, with cost-efficient pagination billing

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/facebook/profile/posts
- 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-posts-scraper-17f9bff2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CuAmof7ZCHTXUfWei2-5x

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-posts-scraper-17f9bff2
```

Example prompt: Can you scrape all the recent posts from this Facebook page — https://www.facebook.com/nasa — and pull the content for me?

## When to prefer this

Use this endpoint when you need to programmatically retrieve posts from a public Facebook profile or page, especially when paginating through large post histories efficiently. The billing model makes it cost-effective for multi-page scrapes since only the first page of each logical search is charged. Prefer this over general web scrapers when you need structured Facebook-specific post data.

## Known failure modes

- Invalid or inaccessible Facebook profile URL returns an error
- Private or restricted Facebook profiles may return no content
- Missing both url and pageId parameters causes a validation error
- Invalid cursor token results in pagination failure
- Rate limiting or blocking by Facebook may return empty or error responses

## How this service works

Profile Posts 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 list of posts from the specified Facebook profile, including post content and metadata, along with a pagination cursor for fetching subsequent pages and a billing requestId to use as parentRequestId for cost-free continuation calls.

## 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 profile URL"
      },
      "cursor": {
       "type": "string",
       "description": "To paginate through the posts 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."
      },
      "pageId": {
       "type": "string",
       "description": "Facebook profile page id"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/facebook-profile-posts-scraper-17f9bff2/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)
