# ForgeMesh Fleet Products Registry

> ForgeMesh Fleet Products Registry is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a machine-readable registry of ForgeMesh's x402 paid agent services, including name, category, route count, and USD price range, with optional category filtering.

## Facts

- Endpoint: POST https://x402.forgemesh.io/fleet-products
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-fleet-products-registry-d7ad9a39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BLC-mHNhh0BhnjOuDm6Su

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-fleet-products-registry-d7ad9a39 -d '<json body>'
```

Example prompt: Show me everything in the ForgeMesh fleet — I want to see all their x402 agent services with categories and price ranges, and filter it down to just the onchain-intel ones.

## When to prefer this

Use this endpoint when an agent needs to discover what ForgeMesh x402 paid services exist before deciding which one to call, or when a user wants to browse available tools by category (onchain-intel, voice, travel, econ-intel, commerce, infra, media, utility-grid). Prefer this over fleet-product-detail when you only need a high-level overview of services rather than full endpoint schemas and worked examples.

## Known failure modes

- Invalid category string returns empty or error response
- Payment of $0.05 USDC not provided causes 402 rejection
- Network timeout if ForgeMesh registry is temporarily unavailable
- Unknown category enum value may return no results

## How this service works

Paid, machine-readable registry of ForgeMesh's production x402 agent services: what each one is, its category, route count, and USD price range. Spans 11 services across onchain intel, voice, travel, econ intel, commerce, infra, and this Utility Grid itself. Optional category filter. Call fleet-product-detail next for full endpoint schemas and worked examples of any listed service.

## Output

A structured list of up to 11 ForgeMesh x402 services, each with its name, category (e.g. onchain-intel, voice, travel), number of live routes, and USD price range. Optionally filtered to a single category. Serves as a discovery index before calling fleet-product-detail for full schemas.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "category": {
   "type": "string",
   "description": "Optional: onchain-intel, voice, travel, econ-intel, commerce, infra, media, utility-grid"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "category": "onchain-intel",
  "products": [
   {
    "id": "onchain-anomaly",
    "host": "anomaly.forgemesh.io",
    "name": "Blockchain & Market Anomaly Detection",
    "summary": "Paid real-time anomaly detection via x402. Mempool, whale alerts, stablecoin depegs, and GitHub trending signals.",
    "category": "onchain-intel",
    "price_range": {
     "max": 0.05,
     "min": 0.01
    },
    "route_count": 16
   }
  ],
  "categories": [
   "commerce",
   "econ-intel",
   "infra",
   "media",
   "onchain-intel",
   "travel",
   "utility-grid",
   "voice"
  ],
  "generated_at": "2026-07-17T11:53:32.075Z",
  "total_products": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-fleet-products-registry-d7ad9a39/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)
