# ScopeAPI Facebook Event Lookup

> ScopeAPI Facebook Event Lookup 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).

Retrieves detailed data for a specific Facebook event by its event ID

## Facts

- Endpoint: GET https://scopeapipay.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-e35a169f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_32z9o-YxgCYK6K27bSLxl

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-e35a169f
```

Example prompt: Can you pull up the details for Facebook event ID 1234567890 — I want to see the event name, date, location, and any other available info about it?

## When to prefer this

Use this endpoint when you need structured data for a specific, known Facebook event by its ID and want to pay per call via USDC micropayments without a subscription. Prefer this over scraping or manual lookup when you need programmatic, repeatable access to Facebook event metadata for analytics, monitoring, or enrichment workflows.

## Known failure modes

- Invalid or non-existent eventId returns empty data or error
- Private/restricted Facebook events may return no accessible data
- Payment failure via x402/USDC micropayment prevents request from being processed
- Malformed eventId path parameter causes request failure
- Rate limiting or quota exceeded on the underlying data source

## 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

A JSON object containing data fields for the specified Facebook event (such as name, date, location, description, and other metadata), along with a source field identifying ScopeAPI as the data 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-e35a169f/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)
