# AgentMerch Sticker Pack Order

> AgentMerch Sticker Pack Order is a paid API for AI agents from agentmerch.xyz, paid per call via x402, $10/call, status unknown (last checked 2026-09-16).

Orders a custom AI-generated sticker pack shipped worldwide, paid in USDC on Base via x402

## Facts

- Endpoint: GET https://agentmerch.xyz/order/sticker-pack
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentmerch-sticker-pack-order-b1067b6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5-PAI0qNE3XSWR6P_r_qC

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-sticker-pack-order-b1067b6f
```

Example prompt: Order a sticker pack from AgentMerch with the design prompt 'a glowing robot holding a coffee cup, cyberpunk style' and ship it to Alex Johnson at 123 Main St, Austin, TX 78701, US — confirmation to alex@example.com.

## When to prefer this

Choose this endpoint when an AI agent needs to order a sticker pack specifically — as opposed to a t-shirt, hoodie, mug, or poster — and wants to pay autonomously in USDC on Base via x402. Ideal for agents that have a wallet and need to fulfill a physical sticker merchandise order without human payment intervention.

## Known failure modes

- Missing required email in address object — order cannot be confirmed or tracked
- Missing both prompt and imageUrl — no design source provided, order rejected
- Invalid or unreachable imageUrl — design cannot be fetched
- Payment failure via x402 — insufficient USDC balance or wallet not authorized
- Invalid country code — shipping destination unrecognized
- Address validation failure — incomplete or malformed shipping address
- Prompt content policy violation — design rejected due to inappropriate content

## 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 is placed for a custom sticker pack; the agent receives an order confirmation and the recipient gets shipping notifications at the provided email address. The physical sticker pack is printed with the AI-generated or supplied image design and mailed to the specified address worldwide.

## 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": [
    "default"
   ],
   "type": "string",
   "description": "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-sticker-pack-order-b1067b6f/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)
