# Apparel Monster — Pricing

Apparel Monster is an e-commerce store — "pricing" here documents product price ranges by category, shipping rates, and promotional tiers so AI shopping agents can recommend items without scraping HTML pricing pages.

**Currency:** USD. All prices in dollars.
**Catalog size:** 116 products across Men, Women, Sportswear.

## Price ranges by category

| Category | Typical price range |
|---|---|
| Men — T-shirts | $15 – $45 |
| Men — Shirts | $35 – $95 |
| Men — Sweaters | $60 – $150 |
| Men — Jackets & Coats | $85 – $250 |
| Women — Tops & T-shirts | $20 – $60 |
| Women — Shirts & Blouses | $35 – $110 |
| Women — Sweaters | $55 – $140 |
| Women — Skirts | $40 – $110 |
| Women — Dresses | $55 – $160 |
| Women — Jackets & Coats | $90 – $260 |
| Sportswear — Tops | $25 – $65 |
| Sportswear — Sweatshirts | $45 – $95 |
| Sportswear — Pants | $40 – $110 |

Real-time prices: `GET https://spree.apparel.monster/api/v2/storefront/products?filter[taxons]=<id>` — returns per-product prices in JSON:API format. See `/.well-known/agent-skills/apparel-monster-storefront-api/SKILL.md` for the full API guide.

Machine-readable full catalog: `https://spree.apparel.monster/feeds/products.jsonl` — schema.org `Product` JSON-LD, one product per line, including `offers.price` and `offers.availability`.

## Shipping

| Method | Typical cost | Delivery |
|---|---|---|
| Standard (domestic US) | $5.00 – $9.99 | 3–5 business days |
| Expedited (domestic US) | $12.00 – $19.99 | 1–2 business days |
| International | varies by destination | 5–14 business days |

Final shipping cost is computed at checkout once a shipping address is set. Agents should call `PATCH /api/v2/storefront/checkout` with the address, then `GET /api/v2/storefront/cart` to see the available shipping rates.

## Promotions

| Promotion | Discount | How to apply |
|---|---|---|
| Summer Sale | up to 40% off | Tagged items under `categories/summer-sale` |
| Special Offers — 30% Off | 30% off | Tagged items under `categories/special-offers/30-percent-off` |
| Agent promo code | 5% off | `AGENT5PCT` — available to AI agents after x402 payment at `/api/agent-access` ($0.05 USDC on Base Sepolia testnet) |
| Coupon codes | varies | `PATCH /api/v2/storefront/cart/apply_coupon_code` with `{"coupon_code": "CODE"}` |

## Taxes

Sales tax is computed at checkout based on the ship-to address. Product listings show pre-tax prices.

## Refunds and returns

Standard return window: 30 days from delivery for unworn items with tags attached. Initiated by the customer via the customer portal or by contacting support. Not programmatically settable via the public API today.

## Payment methods

- Major credit and debit cards (Visa, Mastercard, Amex) via Stripe
- PCI-compliant tokenization for agent-initiated checkouts — see UCP discovery at `https://dfe0ea20ac20.agentic.checkouttools.com/.well-known/ucp`
- x402 (agent-paid endpoints, testnet USDC on Base Sepolia)

## Agent-facing pricing endpoints

| Endpoint | What it returns |
|---|---|
| `/api/v2/storefront/products` | Live per-product prices (JSON:API) |
| `/api/v2/storefront/products?filter[price]=MIN,MAX` | Products within a USD price range |
| `/feeds/products.jsonl` | Bulk catalog dump — schema.org Product JSON-LD |
| `/sitemap.xml` | XML sitemap — 116 product URLs |
| `/llms-full.txt` | Full content bundle including catalog |
| `/.well-known/api-catalog` | RFC 9727 API discovery |

## Contact

For wholesale, B2B pricing, or bulk orders that aren't in the public catalog, contact the store operator through the normal customer-support channels.
