# StableSocial Facebook Profile Photos

> StableSocial Facebook Profile Photos is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Retrieves photos from a Facebook page profile, with pagination support

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/facebook/profile/photos
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-facebook-profile-photos-2ef8243f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DWNkbe-9LqF6iSPna22bk

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 stablesocial-facebook-profile-photos-2ef8243f -d '<json body>'
```

Example prompt: Can you pull all the photos from this Facebook page for me? Here's the URL: https://www.facebook.com/NationalGeographic

## When to prefer this

Use this endpoint when you need pay-per-request access to Facebook page photos without setting up OAuth or a Facebook developer account. Ideal for one-off scraping tasks, competitive research, or building pipelines that don't justify a subscription. Prefer this over official Facebook Graph API when you want zero auth setup and cost-per-call billing in USDC.

## Known failure modes

- Invalid or non-existent Facebook page URL returns an error or empty result
- Private or restricted Facebook pages may return no photos due to access limitations
- Incorrect pagination cursor or next_page_id causes invalid page traversal
- Payment failure (insufficient USDC) results in a 402 response and no data returned
- Rate limiting or scraping blocks by Facebook may cause partial or failed responses

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of photos from the specified Facebook page, including photo URLs and metadata, along with pagination tokens (cursor and next_page_id) to retrieve subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "Facebook page URL"
  },
  "cursor": {
   "type": "string",
   "description": "To paginate through to the next page"
  },
  "next_page_id": {
   "type": "string",
   "description": "To paginate through to the next page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-facebook-profile-photos-2ef8243f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
