# ScopeAPI Facebook Video Search

> ScopeAPI Facebook Video Search 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).

Search Facebook for videos matching a keyword query and retrieve social intelligence data about those videos

## Facts

- Endpoint: GET https://scopepay.vercel.app/api/facebook/search/videos
- 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-video-search-28fe8841
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_05ux4lKjlA3T74hvpusjS

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-video-search-28fe8841
```

Example prompt: Search Facebook videos for 'electric vehicles' and show me what comes up — I want to see what kind of video content is getting traction around that topic on Facebook.

## When to prefer this

Use this endpoint when you need to programmatically search Facebook's public video content by keyword for social intelligence, market research, competitor monitoring, or content discovery — especially when you need pay-per-call access without a long-term subscription and want USDC micropayment billing via x402.

## Known failure modes

- Missing required query parameter 'q' returns an error response
- Payment of 0.5 USDC not provided via x402 results in 402 Payment Required
- Invalid or empty query string may return empty data set
- Facebook rate limiting or access restrictions may cause partial or empty results
- Network timeout on the Vercel deployment may cause 504 errors

## 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 with a 'data' field containing Facebook video search results matching the query, and a 'source' field confirming 'ScopeAPI'. Results include video metadata and social engagement signals for videos matching the search term.

## 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-video-search-28fe8841/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)
