diagnose_meta_catalog_funnel

Meta Ads Read

User wants to know WHERE in the catalog shopping funnel they're losing shoppers

Endpoint

POST https://api.adspirer.ai/api/v1/tools/diagnose_meta_catalog_funnel/execute

Headers

Description

User wants to know WHERE in the catalog shopping funnel they're losing shoppers. Keywords: "funnel", "drop-off", "people add to cart but don't buy", "abandoned carts", "why aren't products converting", "checkout drop". Reports the catalog funnel (product view → add to cart → checkout → purchase) per product and account-wide, from cached nightly metrics. For each product and the account it computes the stage-to-stage drop-off RATES and states, as a MEASURED FACT, the stage with the largest drop (e.g. "82% of carts didn't reach checkout"). It does NOT label a drop "severe" or assert a diagnosed cause — it offers COMMON REASONS to check at that stage (creative/feed at view→cart; price/shipping at cart→checkout; payment/checkout friction or pixel firing at checkout→purchase) as guidance, not a verdict. Reads cached nightly product metrics (never calls Meta live). When to use: "Where are shoppers dropping off in my catalog funnel?", "Why am I getting carts but fewer sales?"

Request body

All tool arguments are wrapped in an arguments object.

FieldTypeDescription
lookback_daysinteger optionalDays to analyze: 7, 30, 60, 90, or 120 (default 30). default: 30
product_set_idstring optionalOptional product set ID to scope the diagnostic to one set.
start_datestring optionalStart date YYYY-MM-DD (overrides lookback_days with end_date).
end_datestring optionalEnd date YYYY-MM-DD (overrides lookback_days with start_date).
ad_account_idstring optionalMeta ad account ID. Required for multi-account users.

Example request

{
  "arguments": {
    "lookback_days": 30,
    "product_set_id": "string",
    "start_date": "string",
    "end_date": "string",
    "ad_account_id": "string"
  }
}

Example responses

200 — Success

{
  "success": true,
  "data": {
    "text": "(tool-specific textual output for diagnose_meta_catalog_funnel)",
    "quota": {
      "used": 42,
      "limit": 150,
      "tier": "plus",
      "period_end": "2026-05-01"
    }
  },
  "tool": "diagnose_meta_catalog_funnel"
}

400 — Tool-level error (bad arguments / multi-account selection)

{
  "success": false,
  "error": "You have 25 meta_ads accounts connected. Please specify which account to use by passing the ad_account_id parameter:\n  - Acme Holdings (ad_account_id=\"act_123456789\")\n  - Acme EU (ad_account_id=\"act_987654321\")",
  "is_error": true,
  "tool": "diagnose_meta_catalog_funnel"
}

402 — Quota exhausted

{
  "success": false,
  "error": "\ud83d\udea8 Monthly limit reached (150/150 tool calls on Plus tier).\nUpgrade to Pro at https://adspirer.ai to keep building.",
  "is_error": true,
  "tool": "diagnose_meta_catalog_funnel",
  "quota": {
    "used": 150,
    "limit": 150,
    "tier": "plus",
    "period_end": "2026-05-01",
    "upgrade_url": "https://adspirer.ai"
  }
}

Try it live


Adspirer REST API — get an API key at adspirer.ai/keys · adspirer.ai