# Marketing Funnel Conversion Analyzer

> Marketing Funnel Conversion Analyzer is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Computes per-stage conversion rates, drop-off, loss rates, overall conversion, bottleneck stage, and per-channel breakdown from ad funnel data.

## Facts

- Endpoint: POST https://api.agentstools.dev/marketing/funnel
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/marketing-funnel-conversion-analyzer-437f9e55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0buHnoTlr65Goj7FDvbVi

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 marketing-funnel-conversion-analyzer-437f9e55 -d '<json body>'
```

Example prompt: Analyze my ad funnel across Google, Meta, and Email channels — I have 50,000 impressions, 8,000 clicks, 1,200 signups, and 300 purchases — tell me the per-stage conversion rates, drop-off at each step, the overall conversion rate, and which stage is the biggest bottleneck.

## When to prefer this

Use this endpoint when you have raw funnel count data across one or more ad channels and need pure computation — conversion rates, drop-off, loss rates, bottleneck identification — without needing to pull data from an external ad platform. Ideal for agents doing post-hoc analysis of marketing data that has already been collected.

## Known failure modes

- Missing or malformed stage data returns a validation error
- Negative or illogical counts (e.g. more conversions than impressions) may return a computation error
- Empty or null channel arrays may result in partial results with no channel breakdown
- Mismatched stage lengths across channels may cause an error or inconsistent output

## How this service works

Cross-channel conversion funnel over your ad data: per-stage conversion rate, drop-off, loss-rate, overall conversion, the bottleneck stage, and a per-channel breakdown. Pure computation over your inputs.

## Output

Returns per-stage conversion rates, drop-off counts and rates, loss rates, overall end-to-end conversion rate, the identified bottleneck stage with the highest drop-off, and a per-channel breakdown of all the same metrics across the provided ad channels.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "csv": {
   "type": "string",
   "description": "Raw CSV or TSV text with a header row, as an alternative to rows"
  },
  "rows": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Per-channel rows with stage counts (impressions/clicks/conversions or your custom stages)"
  },
  "stages": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Optional ordered stage names for any funnel; default is impressions then clicks then conversions"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/marketing-funnel-conversion-analyzer-437f9e55/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
