# x402.forgemesh.io Swag Store Catalog

> x402.forgemesh.io Swag Store Catalog 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 live x402swag.com product catalog with categories, items, price ranges, and purchasing instructions — including x402 USDC micropayment checkout and agent shortcut.

## Facts

- Endpoint: POST https://x402.forgemesh.io/swag-store-catalog
- 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/x402-forgemesh-io-swag-store-catalog-a6d4fe41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-nYtjmJ091gcwzdyybegR

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 x402-forgemesh-io-swag-store-catalog-a6d4fe41 -d '<json body>'
```

Example prompt: Pull up the x402swag.com store catalog and show me what's available in the apparel category, including prices and how to buy.

## When to prefer this

Use this endpoint when an agent needs to discover what ForgeMesh/x402swag.com sells, retrieve current product listings with pricing, or programmatically initiate a purchase — especially when USDC micropayment checkout or a one-call agent shortcut is desired. Prefer over generic web scraping for structured, agent-ready catalog data.

## Known failure modes

- Invalid category string returns an error or empty result
- Store catalog unavailable if x402swag.com upstream is down
- Payment of $0.05 USDC required per call — missing or invalid x402 payment header results in 402 response
- Unrecognized category filter silently falls back to full catalog or returns error

## How this service works

Live catalog of the x402swag.com storefront: product categories, items with price ranges, and exactly how to buy — free browse/cart/checkout, dynamic-price settlement via x402 USDC or card, and the store's own $0.05 one-call agent shortcut. Optional category filter (apparel, drinkware, stickers, crew-necks, v-necks).

## Output

A structured catalog of x402swag.com products including category breakdowns, individual item names with price ranges, and exact purchasing instructions covering free browse/cart/checkout flow, x402 USDC dynamic-price settlement, card payment option, and a $0.05 single-call agent shortcut for quick purchases.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "category": {
   "type": "string",
   "description": "Optional: apparel, drinkware, stickers, crew-necks, v-necks"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "id": 67,
    "title": "x402 Die-Cut Sticker Black, Letterform Shape Cut, White Outline, Vinyl Laptop Sticker",
    "handle": "x402-die-cut-sticker-black-letterform-shape-cut-white-outline-vinyl-laptop-sticker",
    "category": "stickers",
    "description": "x402 in solid black with a white fusing outline — cut to the shape of the word. Reads on any surface.",
    "price_range": {
     "max": 7.99,
     "min": 3.99
    },
    "variant_count": 5
   }
  ],
  "category": "stickers",
  "how_to_buy": {
   "site": "https://x402swag.com",
   "browse": "Free — GET /api/products and GET /api/collections list every item and category with no payment required.",
   "cart_and_checkout": "Free to build — POST /api/cart/add and POST /api/checkout assemble an order and return an order token.",
   "payment_dynamic_order": "POST /api/orders/{token}/pay settles via x402 USDC on Base at a dynamic cart-based price; POST /api/orders/{token}/stripe pays by card.",
   "x402_one_call_shortcut": {
    "route": "GET /api/agent/catalog",
    "price_usd": 0.05
   }
  },
  "total_items": 13
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-forgemesh-io-swag-store-catalog-a6d4fe41/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)
