# Facebook Profile Photos Scraper

> Facebook Profile Photos 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-15).

Retrieves paginated photos from a Facebook profile or page URL

## Facts

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

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-photos-scraper-02bd11dc
```

Example prompt: Can you grab all the photos from this Facebook page — https://www.facebook.com/example — and give me a list of all the image URLs?

## When to prefer this

Choose this endpoint when you need to programmatically retrieve photos from a Facebook profile or page and want cost-efficient pagination — subsequent pages of the same search are billed at $0 using the parentRequestId mechanism. Ideal for scraping full photo galleries from public Facebook pages without building your own scraper infrastructure.

## Known failure modes

- Invalid or non-existent Facebook URL returns an error or empty result
- Private or restricted Facebook profiles may return no photos
- Rate limiting may occur with excessive requests
- Pagination parameters mismatch (changed filters mid-pagination) triggers a new billable request
- Malformed cursor or next_page_id causes pagination failure

## How this service works

Profile Photos 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 photos from the specified Facebook profile or page, including image URLs and pagination cursors (cursor, next_page_id) for fetching subsequent pages, along with billing metadata including a requestId that can be used as parentRequestId for free continuation calls on 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-photos-scraper-02bd11dc/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)
