# ForgeMesh x402 Ads – Intent Demand Analytics

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

Returns AI agent demand analytics and intent signals for a specific category across the x402 network, including probe counts, conversions, and agent-specific traffic.

## Facts

- Endpoint: GET https://ads.forgemesh.io/api/intent/demand
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-x402-ads-intent-demand-analytics-d07be181
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KRau-zh2oaOumUhy6hW37

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-demand-analytics-d07be181
```

Example prompt: Can you pull the x402 demand analytics for the finance category — I want to see how many probes and conversions agents are generating there right now?

## When to prefer this

Use this endpoint when you need category-level intent and demand signals specifically from the x402 network — particularly to understand AI agent behavior, probe-to-conversion ratios, and agent vs. human traffic split. Prefer this over general web analytics tools when your question is specifically about what AI agents are seeking within the x402 ecosystem.

## Known failure modes

- Invalid or unsupported category returns empty or error response
- Payment failure (insufficient USDC balance) results in 402 rejection
- Rate limiting if too many calls are made in a short window
- Stale data if analytics pipeline is lagging
- No data available for a newly created or very niche category

## How this service works

Returns demand depth for one category: probe volume, distinct sources, buyer-class share, probed price points, and a daily time series. Use it to validate pricing before launching in that category.

## Output

Returns a JSON object with a demand summary for the queried category, including total probe count (e.g. 42,000), conversion count (e.g. 900), and agent-specific probe count (e.g. 17,000), plus the category name.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "summary": {
   "probes": 42000,
   "conversions": 900,
   "agent_probes": 17000
  },
  "category": "finance"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-x402-ads-intent-demand-analytics-d07be181/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)
