# ScopeAPI Facebook Event Search

> ScopeAPI Facebook Event Search is a paid API for AI agents from scopeapipay.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Search Facebook events by keyword query, returning event data scraped from Facebook's platform

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/facebook/search/events
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-facebook-event-search-589f7e4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p_lPTsnIR39akuohIpSN4

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 scopeapi-facebook-event-search-589f7e4d
```

Example prompt: Search Facebook events for 'blockchain conference' and show me what events come up.

## When to prefer this

Use this endpoint when you need to programmatically search Facebook events without direct Facebook API access, especially for market intelligence, event discovery, or social listening use cases. Prefer this over manual browsing when automating event research workflows or when Facebook's official API access is unavailable. Best for agents needing pay-per-call event search without API key setup.

## Known failure modes

- Missing or empty query parameter returns no results or an error
- Query returns empty data if no matching Facebook events exist
- Rate limiting or payment failure (402) if USDC micropayment is not processed
- Facebook platform changes may cause scraping failures returning incomplete or malformed data
- Network timeout if Facebook's platform is slow to respond

## How this service works

37 paid REST endpoints: Facebook social & ads intelligence, Amazon e-commerce data, job market intelligence. Pay per call via x402 micropayments (USDC on Base).

## Output

Returns a JSON object with a data field containing Facebook event listings matching the search query, plus a source field identifying ScopeAPI as the provider. The event data typically includes event names, dates, locations, and other available metadata scraped from Facebook.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "source": "ScopeAPI"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scopeapi-facebook-event-search-589f7e4d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopeapipay.vercel.app](https://www.zero.xyz/host/scopeapipay.vercel.app/llms.txt)
