# ScopeAPI Facebook Event Lookup

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

Retrieves details about a specific Facebook event by its event ID

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/facebook/event/%7BeventId%7D
- 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-lookup-e0c91832
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U0aV1xTrMigpp2xelW1NJ

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-lookup-e0c91832
```

Example prompt: Can you pull up the details for Facebook event ID 1234567890 — I need to see what data ScopeAPI returns for it, like the name, date, and any other event metadata?

## When to prefer this

Use this endpoint when you need to programmatically retrieve details about a specific Facebook event by its ID, especially in automated workflows where per-call micropayment billing via USDC is acceptable. Prefer this over manual lookup when integrating Facebook event data into pipelines for marketing intelligence, social monitoring, or event tracking.

## Known failure modes

- Invalid or non-existent event ID returns empty or error response
- Private or restricted Facebook events may return no data
- Payment failure via x402/USDC prevents the call from completing
- Malformed event ID path parameter causes a 400-level error
- Rate limiting or quota exceeded returns a 429 error

## 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 details (e.g. name, date, location, description) sourced from ScopeAPI, along with a 'source' field identifying the provider.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "eventId": {
       "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-lookup-e0c91832/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scopepay.vercel.app](https://www.zero.xyz/host/scopepay.vercel.app/llms.txt)
