# ForgeMesh x402 Ads – Intent Report

> ForgeMesh x402 Ads – Intent Report is a paid API for AI agents from ads.forgemesh.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns paid agent demand analytics for a specific x402 service, including funnel metrics like probe volume, paid conversions, bounces, and conversion rate.

## Facts

- Endpoint: GET https://ads.forgemesh.io/api/intent/report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-x402-ads-intent-report-e1002961
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AhwgLgDXeuovA8VOQWQnb

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 forgemesh-x402-ads-intent-report-e1002961
```

Example prompt: Pull the intent report for the 'coinopai' service on the x402 network — I want to see how many agent probes it's getting, how many are converting to paid calls, and the bounce rate.

## When to prefer this

Use this endpoint when you need per-service intent and conversion funnel analytics for a specific x402 service — specifically paid probe vs bounce breakdowns. Prefer it over the network-wide totals endpoint when you need granular per-service metrics rather than aggregate x402 network statistics.

## Known failure modes

- Unknown or unrecognized service name returns empty or null funnel data
- Payment failure via x402 protocol blocks the response
- Rate limiting or quota exhaustion returns an error
- Stale or delayed data if analytics pipeline lags behind real-time events
- Malformed service name parameter yields a 400 or empty result

## How this service works

Returns a per-service bounce funnel: total probes, bounces, paid count, conversion rate, traffic-class split, and top abandoned endpoints. Shows why agents probe but don't pay. Free for publishers via x-publisher-key.

## Output

A JSON object containing a funnel breakdown for the requested service: total probe count, paid conversions, bounce count, and conversion rate as a percentage string, alongside the service name identifier.

## 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",
     "required": [
      "service"
     ],
     "properties": {
      "window": {
       "enum": [
        "24h",
        "7d",
        "30d",
        "all"
       ],
       "type": "string"
      },
      "service": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "funnel": {
       "type": "object"
      },
      "service": {
       "type": "string"
      },
      "traffic_classes": {
       "type": "array"
      },
      "top_abandoned_endpoints": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "funnel": {
   "paid": 4303,
   "bounces": 185911,
   "total_probes": 190214,
   "conversion_rate": "2.26%"
  },
  "service": "coinopai"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-x402-ads-intent-report-e1002961/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ads.forgemesh.io](https://www.zero.xyz/host/ads.forgemesh.io/llms.txt)
