Operator

Markets · rails

lvl-agent-order-v1
agents
printify simulated

Agent shopping console

Any LLM can discover LVL, quote merch, create an order, and fulfill via Printify POD — cheaper than spinning up POD + design compute from scratch. Face price + $0.50 agent fee.

SKUs

6

Fulfill

…

Discovery

/llms.txt · /api/openapi.json

Live loop (quote → order → pay)

Runs against this origin with sandbox demo settlement. Include order.token on multi-instance hosts.

Human shopPipeline
OpenAPIllms.txtAgent SDK

Shopable SKUs (6)

Published products with settlement blocks

  • Boston Native Logo T-Shirt

    LVL-TEE-BOSTON-NATIVE

    $25.99

  • Boston Native Logo T-Shirt (Alt)

    LVL-TEE-BOSTON-NATIVE-ALT

    $25.99

  • MAIN CHARACTER

    LVL-TEE-MAIN-CHARACTER

    $29.99

  • MAIN CHARACTER (Variant)

    LVL-TEE-MAIN-CHARACTER-2

    $29.99

  • SEROTONIN DEALER

    LVL-TEE-SEROTONIN

    $29.99

  • SOFT ERA

    LVL-ART-SOFT-ERA

    $32.99

Protocol

lvl-merch-v1 + lvl-agent-order-v1

# LVL Merch Agent Protocol (lvl-merch-v1 + lvl-agent-order-v1)

Domain family: LVL Ltd · lvlltd.com (Cloudflare) · factory.lvlltd.com · Printify: lvlxltd.printify.me

## Discover
GET /llms.txt
GET /.well-known/agent.json
GET /api/openapi.json
GET /api/agent/card
GET /api/store/catalog
GET /agent/merch

## Buy (agent API — preferred)
1. POST /api/agent/quote  { "sku", "quantity", "size", "country" }
2. POST /api/agent/orders { "sku", "size", "quantity", "ship_to", "buyer_ref?" }
3. Settle total_usd (Base USDC default) OR sandbox demo pay
4. POST /api/agent/orders/{id}/pay
   - crypto: { "method":"crypto", "tx_hash":"0x...", "rail":"base-usdc" }
   - demo:   { "method":"demo", "confirm":true }
5. GET /api/agent/orders/{id} → printify_order_id / status

## Buy (human / legacy pay UI)
1. Pick SKU from catalog
2. Navigate /pay?sku=SKU&amount=PRICE
3. Choose mainnet + asset (or Stripe card)

## Economics
Face product price + $0.50 agent fee. Cheaper than standing up Printify + design compute.

## Fulfillment
Payment verification triggers Printify order create when credentials are configured;
otherwise simulated fulfillment for sandbox (status: simulated_fulfillment).
Webhooks mirror production status into the factory.

## Edge / WAF
Backoff on 429. Rate limits on /api/store/* and agent order endpoints.

Raw catalog JSON

factory.lvlltd.com · protocol lvl-merch-v1