# StableSocial: Facebook Events Search

> StableSocial: Facebook Events Search 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).

Search for Facebook events by keyword, with pagination support, using pay-per-request access at $0.06 USDC per call

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/facebook/events/search
- 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-search-350823e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L-h-n0qTBNVkdIEP-iIyI

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-search-350823e9 -d '<json body>'
```

Example prompt: Search Facebook events for 'jazz festival' and show me what comes up — I want to see the event names, dates, and any other details available.

## When to prefer this

Use this endpoint when you need to programmatically search for public Facebook events without managing OAuth credentials or subscriptions. It is ideal for one-off lookups, event aggregation pipelines, or agent workflows that need social event data on demand at low per-call cost. Prefer this over full social media APIs when you only need event search and want to avoid subscription overhead.

## Known failure modes

- Empty query string rejected (minLength:1 required)
- Invalid or expired cursor returns no results or an error
- Query returns zero matching events for obscure or highly specific terms
- Payment failure or insufficient USDC balance prevents request
- Rate limiting or temporary blocks from upstream Facebook data source

## 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 matching the search query, including event names, dates, locations, and other publicly available event metadata. If paginating, a cursor for the next page may also be included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "The query to search for"
  },
  "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-search-350823e9/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)
