# ForgeMesh Fleet Product Detail

> ForgeMesh Fleet Product Detail 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-15).

Returns the full API sheet for a specific ForgeMesh x402 product, including every route, HTTP method, price, description, and input schema.

## Facts

- Endpoint: POST https://x402.forgemesh.io/fleet-product-detail
- 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-fleet-product-detail-c9fb23a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WY0131QFDpXPhxUaRoTFM

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-product-detail-c9fb23a1 -d '<json body>'
```

Example prompt: Pull up the full endpoint sheet for the ForgeMesh 'imagegen' product — I need every route, its HTTP method, price, and input schema so I can call it correctly.

## When to prefer this

Use this endpoint when an agent needs the full, authoritative API specification for a specific ForgeMesh x402 product before attempting to call it — especially when routes, prices, or input schemas are unknown. Prefer this over the fleet-products catalog endpoint when you already know which product you want and need per-route detail rather than a high-level overview.

## Known failure modes

- Unknown product name or id — endpoint returns valid product id list instead of an error
- Product exists but has no worked response examples — fields may be absent or null
- Network or payment failure — x402 payment ($0.05 USDC) not processed, request rejected
- Case sensitivity mismatch — though matching is described as case-insensitive, edge cases may cause lookup failures

## How this service works

Full endpoint sheet for one ForgeMesh x402 product: every route, HTTP method, price, description, input schema, and (where available) a worked response example — everything needed to call it correctly on the first try. Required `product` matches an id or name from fleet-products (case-insensitive); an unknown value returns the valid id list.

## Output

A structured document containing every route for the requested ForgeMesh x402 product, including HTTP methods, per-route prices, descriptions, input schemas, and where available worked response examples. If the product value is unrecognized, the response returns the list of valid product IDs instead.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "product": {
   "type": "string",
   "description": "Required: product id or name from fleet-products, e.g. \"imagegen\" or \"voice\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "product": {
   "id": "imagegen",
   "host": "imagegen.coinopai.com",
   "name": "AI Image Generation",
   "summary": "Paid AI image generation via x402. Text-to-image, background removal, 4x HD upscaling.",
   "category": "media",
   "endpoints": [
    {
     "price": "$0.250000",
     "route": "/generate",
     "method": "GET",
     "example": null,
     "description": "Standard AI image generation. Requires x402 payment of 0.25 USDC on Base.",
     "input_schema": [
      {
       "in": "query",
       "name": "prompt",
       "schema": {
        "type": "string"
       },
       "required": true,
       "description": "Natural language image description"
      },
      {
       "in": "query",
       "name": "aspect",
       "schema": {
        "enum": [
         "1:1",
         "16:9",
         "9:16",
         "4:3"
        ],
        "type": "string",
        "default": "1:1"
       },
       "required": false,
       "description": "Aspect ratio"
      }
     ]
    }
   ],
   "price_range": {
    "max": 0.75,
    "min": 0.25
   },
   "route_count": 4
  },
  "generated_at": "2026-07-17T11:53:32.075Z"
 }
}
```

## More

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