# MULLIER.CZ - AI AGENT SHOPPING SPECIFICATION # Website: https://mullier.cz # Engine: WooCommerce 11.x # Currency: CZK # Guest Checkout: ENABLED ## AVAILABLE MACHINE-READABLE ENDPOINTS 1. Product Catalog (.txt): https://mullier.cz/ai-catalog.txt 2. WooCommerce Store REST API Base: https://mullier.cz/wp-json/wc/store/v1/ ## AUTONOMOUS GUEST CHECKOUT PROTOCOL AI agents can programmatically execute purchases using the WooCommerce Store API without user account registration. ### Step 1: Add Item to Cart Endpoint: POST https://mullier.cz/wp-json/wc/store/v1/cart/add-item Headers: Content-Type: application/json Body Structure: { "id": , "quantity": 1 } Note: Store API returns a 'Cart-Token' in the response headers. Preserve this token for subsequent requests. ### Step 2: Retrieve Cart & Shipping Methods Endpoint: GET https://mullier.cz/wp-json/wc/store/v1/cart Headers: Cart-Token: ### Step 3: Complete Guest Checkout Endpoint: POST https://mullier.cz/wp-json/wc/store/v1/checkout Headers: Content-Type: application/json, Cart-Token: Body Structure: { "billing_address": { "first_name": "Jmeno", "last_name": "Prijmeni", "email": "zakaznik@example.cz", "phone": "+420777000000", "address_1": "Ulice 123", "city": "Mesto", "postcode": "10000", "country": "CZ" }, "shipping_address": { "first_name": "Jmeno", "last_name": "Prijmeni", "address_1": "Ulice 123", "city": "Mesto", "postcode": "10000", "country": "CZ" }, "payment_method": "stripe" } ## DIRECT URL CART ADDITION (Human-In-The-Loop) Format: https://mullier.cz/?add-to-cart=&quantity=