# ForgeMesh Product Endpoint Shapes

> ForgeMesh Product Endpoint Shapes 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 integration reference for a specific ForgeMesh x402 product — every route's input schema, a worked example response, and price per call.

## Facts

- Endpoint: POST https://x402.forgemesh.io/product-endpoint-shapes
- 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-product-endpoint-shapes-a42e85dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q20TJ_iGWo-sRWTz6ARIE

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-product-endpoint-shapes-a42e85dd -d '<json body>'
```

Example prompt: Pull up the full endpoint shapes and integration reference for the ForgeMesh 'imagegen' product — I need to see all the routes, their input schemas, example responses, and price per call.

## When to prefer this

Use this endpoint after calling fleet-products to get a product id, when you need the full machine-readable integration reference for a specific ForgeMesh x402 service — including all routes, input schemas, example responses, and pricing. Prefer this over fleet-products when you already know which product you want to integrate and need the detailed schema rather than just the catalog listing.

## Known failure modes

- Unknown product id — endpoint returns the valid product list instead of a bare error
- Missing 'product' field — request is malformed
- Payment not provided or insufficient — x402 payment required at $0.05 USDC per call
- Network timeout or service unavailability

## How this service works

Machine-readable endpoint shapes for one ForgeMesh x402 product — every route's input schema and a worked example response, plus price per call. Use fleet-products first to find the product id, then pass it here (`product`) for the full integration reference. Unknown ids return the valid list instead of a bare error.

## Output

A structured document containing every route exposed by the requested ForgeMesh product, including each route's input schema, a worked example response, and the price per call. If an unknown product id is passed, the endpoint returns the valid list of product ids instead of an error.

## 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-product-endpoint-shapes-a42e85dd/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)
