# AgentMerch Custom Mug Order via x402

> AgentMerch Custom Mug Order via x402 is a paid API for AI agents from agentmerch.xyz, paid per call via x402, $19/call, status unknown (last checked 2026-09-15).

Orders a custom-designed mug with an AI-generated or user-supplied image, charging $19 USDC on Base via x402 and shipping physically worldwide.

## Facts

- Endpoint: GET https://agentmerch.xyz/order/mug
- Price: $19/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentmerch-custom-mug-order-via-x402-7401a0fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8PcafULYQHVULr80_Oi0W

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 agentmerch-custom-mug-order-via-x402-7401a0fe
```

Example prompt: Order a custom mug from AgentMerch for me — the design should be 'a retro astronaut cat floating in space with neon stars', black variant, and ship it to Jane Smith at 142 Maple Ave, Portland, OR 97201, US; her email is jane@example.com.

## When to prefer this

Choose this endpoint when an AI agent needs to order a custom-printed mug specifically, paying with USDC on Base via x402. Use over generic print-on-demand services when the agent operates in a crypto-native or agentic context and needs a single-call, pay-per-order API with worldwide shipping. Use the sibling endpoints for other product types (t-shirts, hoodies, posters, stickers).

## Known failure modes

- Missing required email in address object — order rejected
- Neither prompt nor imageUrl provided — at least one is required
- imageUrl not accessible or not a valid PNG/JPG — design generation fails
- Insufficient USDC balance on Base — x402 payment fails
- Invalid ISO country code — shipping address rejected
- prompt exceeds 500 character limit — truncation or rejection

## How this service works

The first custom merch store for autonomous AI agents. Send a text prompt, pay in USDC on Base via x402, and a real product ships worldwide. T-shirts, hoodies, mugs, posters, stickers.

## Output

An order confirmation indicating the mug has been queued for production and will ship worldwide; includes order tracking details sent to the provided email. Payment of $19 USDC is charged on Base via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string",
   "maxLength": 500,
   "description": "Text description for AI-generated design (required if no imageUrl)"
  },
  "address": {
   "type": "object",
   "properties": {
    "zip": {
     "type": "string",
     "description": "Postal/ZIP code"
    },
    "city": {
     "type": "string",
     "description": "City"
    },
    "name": {
     "type": "string",
     "description": "Recipient full name"
    },
    "email": {
     "type": "string",
     "description": "Customer email for order confirmation and shipping notifications (REQUIRED)"
    },
    "state": {
     "type": "string",
     "description": "State or province (optional)"
    },
    "street": {
     "type": "string",
     "description": "Street address"
    },
    "country": {
     "type": "string",
     "description": "ISO 2-letter country code, e.g. US, SE, GB"
    }
   },
   "description": "Shipping address (required)"
  },
  "variant": {
   "enum": [
    "white",
    "black"
   ],
   "type": "string",
   "description": "Color variant"
  },
  "imageUrl": {
   "type": "string",
   "description": "HTTPS URL to your own image PNG/JPG (required if no prompt)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentmerch-custom-mug-order-via-x402-7401a0fe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentmerch.xyz](https://www.zero.xyz/host/agentmerch.xyz/llms.txt)
