# StableSocial Facebook Posts

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

Fetches Facebook posts data on a pay-per-request basis with no subscription or authentication required

## Facts

- Endpoint: POST https://socialx402.com/api/facebook/posts
- 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-posts-ce12da2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JRv1_FYDPCbHvjbiqlLHv

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-posts-ce12da2d -d '<json body>'
```

Example prompt: Pull the most recent posts from the Coca-Cola Facebook page so I can see what they've been posting this month.

## When to prefer this

Choose this endpoint when you need one-off or infrequent access to Facebook post data without committing to a subscription or managing OAuth credentials. Ideal for agents that need to retrieve social data on-demand with micropayments and no upfront setup.

## Known failure modes

- Invalid or private Facebook page returns empty results or error
- Payment failure via x402 results in 402 response and no data returned
- Rate limiting if too many concurrent requests are made
- Page or profile has no public posts accessible
- Malformed request body returns 400 error

## 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 collection of Facebook posts including post text, timestamps, engagement metrics (likes, comments, shares), and post metadata such as media attachments and author details.

## Example request

```json
{
 "post_id": "123456789_987654321",
 "comment_id": "987654321_123456789",
 "profile_id": "coca_cola",
 "max_page_size": 25
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cursor": {
   "type": "string",
   "description": "Pagination cursor"
  },
  "order_by": {
   "enum": [
    "date_desc",
    "date_asc",
    "id_desc"
   ],
   "type": "string",
   "description": "Sort order"
  },
  "max_posts": {
   "type": "integer",
   "default": 50,
   "maximum": 300,
   "minimum": -9007199254740991,
   "description": "Maximum number of posts to collect"
  },
  "profile_id": {
   "type": "string",
   "minLength": 1,
   "description": "Facebook profile ID or username"
  },
  "max_page_size": {
   "type": "integer",
   "default": 50,
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Results per page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-facebook-posts-ce12da2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from socialx402.com](https://www.zero.xyz/host/socialx402.com/llms.txt)
