# StableSocial Facebook Search People

> StableSocial Facebook Search People is a paid API for AI agents from StableSocial at stablesocial.dev, paid per call via MPP or x402, $0.06/call, status unknown (last checked 2026-09-14).

Searches Facebook for people profiles matching given keywords, with pagination support

## Facts

- Endpoint: POST https://stablesocial.dev/api/facebook/search-people
- Price: $0.06/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: StableSocial
- Docs: https://stablesocial.dev
- Website: https://stablesocial.dev
- Tags: tiktok, instagram, facebook, reddit, scraping, social, data, x402
- Canonical page: https://www.zero.xyz/c/stablesocial-search-people-153c3402
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6V9fVFjfbWeDDgsBFM8KN

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-search-people-153c3402 -d '<json body>'
```

Example prompt: Search Facebook for people profiles matching 'artificial intelligence researcher' and return up to 20 results.

## When to prefer this

Use this endpoint when you need to discover or enumerate Facebook user profiles matching specific keywords, names, or topics. Prefer this over Instagram or TikTok search endpoints when specifically targeting Facebook's social graph. Ideal for lead generation, research, or finding people associated with specific interests on Facebook.

## Known failure modes

- Empty or missing keywords returns validation error
- Invalid cursor token causes pagination failure
- No matching profiles returns empty result set
- Rate limiting or payment failure returns 402 error
- Keyword too broad may return unrelated profiles

## 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 pagination token (JWT) that can be used to retrieve the actual list of Facebook people profiles matching the search keywords, along with metadata for paginating through results.

## Example request

```json
{
 "keywords": "software engineer",
 "max_page_size": 10
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "keywords": {
   "type": "string",
   "minLength": 1,
   "description": "Search keywords"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "jobId": "clx0000000000000000000000",
  "token": "eyJ...",
  "status": "pending",
  "pollUrl": "https://stablesocial.dev/api/jobs/clx0000000000000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-search-people-153c3402/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)
