# ScopeAPI Facebook Ad Details

> ScopeAPI Facebook Ad Details is a paid API for AI agents from scopeapipay.vercel.app, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-13).

Fetches detailed metadata and creative information for a specific Facebook ad by its ad ID

## Facts

- Endpoint: GET https://scopeapipay.vercel.app/api/facebook/ads/details/%7BadId%7D
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scopeapi-facebook-ad-details-9558ab0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JO3JeOKCIkGZtaBN7jlv4

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-ad-details-9558ab0a
```

Example prompt: Can you pull up the full details for Facebook ad ID 23849123456789 — I want to see the creative, copy, and any metadata available on it?

## When to prefer this

Use this endpoint when you need detailed metadata for a specific known Facebook ad by its ID, particularly for competitive ad intelligence, ad creative research, or verifying ad details. Prefer this over broader ad search endpoints when you already have the exact ad ID and need full details rather than a list of ads.

## Known failure modes

- Invalid or non-existent ad ID returns empty data or error
- Ad ID belongs to a private or unavailable ad — returns no data
- Payment failure via x402/USDC results in 402 response and no data returned
- Malformed ad ID format causes request to fail
- Rate limiting or quota exceeded returns error response

## 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 detailed information about the specified Facebook ad, including creative assets, ad copy, and metadata sourced from ScopeAPI's Facebook ads intelligence layer.

## 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": {
      "adId": {
       "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-ad-details-9558ab0a/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)
