# StableSocial Facebook Events Scraper

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

Scrapes public Facebook Events listings for a given city's events page, optionally filtered by time frame and with pagination support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/facebook/events
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-facebook-events-scraper-650417a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NXguv9dMSBj-K5zcK52zL

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-events-scraper-650417a8 -d '<json body>'
```

Example prompt: Can you pull up the Facebook events happening this week in San Francisco from the SF Facebook events page and show me what's going on?

## When to prefer this

Choose this endpoint when you need pay-per-request, no-subscription access to public Facebook Events data for a specific city, especially when you want to filter by today, this week, or next week and need pagination support. Prefer this over browser automation or unofficial scrapers when you want a managed, low-friction scraping service billed per call.

## Known failure modes

- Invalid or inaccessible Facebook Events URL returns an error or empty result
- Facebook rate limiting or blocking may cause failed scrapes
- Invalid time enum value causes request rejection
- Expired or invalid cursor causes pagination failure
- Page structure changes on Facebook may break scraping

## 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 Facebook event listings scraped from the specified city's Facebook Events page, potentially including event names, dates, times, locations, and descriptions, along with a cursor for paginating to additional results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "The URL of the city's Facebook Events page"
  },
  "time": {
   "enum": [
    "today",
    "this_week",
    "next_week"
   ],
   "type": "string",
   "description": "The time frame to search for. Defaults to all time"
  },
  "cursor": {
   "type": "string",
   "description": "The cursor to paginate to the next page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-facebook-events-scraper-650417a8/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)
