# ForgeMesh x402 Funnel Theory

> ForgeMesh x402 Funnel Theory is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the 10 structured tenets behind ForgeMesh's x402 pricing and API discovery design philosophy, explaining why discovery is free, how 402 challenges act as probes, and how prices ladder from taste-test to premium.

## Facts

- Endpoint: POST https://x402.forgemesh.io/x402-funnel-theory
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-x402-funnel-theory-89be49fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FHWJlJGOQ649MtjSaLtZk

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-funnel-theory-89be49fa -d '<json body>'
```

Example prompt: Can you pull up ForgeMesh's x402 funnel theory doc — I want to understand why discovery is free, how the 402 challenge acts as a probe, and how pricing ladders from taste-test to premium across their 10 design tenets?

## When to prefer this

Use this endpoint when you need to understand the design philosophy and monetization principles behind the x402 protocol as implemented by ForgeMesh — especially when evaluating whether to build on or integrate with x402-based APIs, or when you want to understand why pricing and discovery behave the way they do in this ecosystem.

## Known failure modes

- Empty or malformed request body may result in a 400 error
- Service unavailability returns a 5xx error
- Incorrect Content-Type header may cause request rejection
- Payment failure returns HTTP 402 with payment challenge before content is delivered

## How this service works

The funnel logic behind ForgeMesh's x402 pricing and discovery design, as 10 structured tenets: why discovery stays free, why the 402 challenge itself is a probe, why failed upstreams never charge, and why prices ladder from taste-test to premium. Written for agents and builders evaluating or designing paid API funnels.

## Output

A structured document containing 10 tenets that explain ForgeMesh's x402 funnel design: why discovery endpoints are free, how the HTTP 402 challenge itself serves as a discovery probe, why failed upstream calls are never billed, and how price tiers are structured from low-cost taste-tests up to premium calls — intended for agents and builders evaluating or designing paid API funnels.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "title": "ForgeMesh theory of agent-commerce discovery",
  "tenets": [
   {
    "id": "rich-free-surfaces",
    "tenet": "Free discovery surfaces stay rich.",
    "detail": "llms.txt, openapi.json, and .well-known/x402.json expose every route, price, and schema at no cost, so crawlers and humans can index a service fully without ever paying."
   }
  ]
 }
}
```

## More

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