# ScopeAPI Facebook Ad Details

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

Retrieves detailed information about a specific Facebook ad by its ad ID

## Facts

- Endpoint: GET https://scopepay.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-f6424953
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o0A_GsxlbuBBTUH-cobLd

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

Example prompt: Can you pull up the full details for Facebook ad ID 23851234567890 — I want to see what the creative, targeting, and metadata look like for that specific ad?

## When to prefer this

Use this endpoint when you need detailed intelligence on a specific Facebook ad by its unique ID — particularly for competitive ad research, creative analysis, or ad monitoring workflows. Prefer this over broader ad search endpoints when you already have the ad ID and need full structured details about that single ad.

## Known failure modes

- Invalid or non-existent ad ID returns empty data object
- Ad ID belonging to a private or removed ad may return no details
- Payment failure via x402 micropayment (insufficient USDC balance) blocks the request
- Rate limiting or abuse detection may reject repeated calls
- Malformed ad ID format may cause a 400-level 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

A JSON object with detailed information about the specified Facebook ad, including ad creative, targeting parameters, 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-f6424953/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)
