# Terracotta House — Chinese Takeaway, Downham Market, Norfolk UK > LIVE MENU — prices and availability are read from the tenant database. Terracotta House is a Chinese takeaway at 16 London Road, Downham Market, Norfolk, PE38 9AW. Tagline: Taste of the Orient · Chinese Meal to Take Away Phone: 01366 382888 Website: https://terracottahouse.uk/order Full HTML menu: https://terracottahouse.uk/takeaway-menu Delivery area information: https://terracottahouse.uk/delivery-areas Opening note: We are open on all bank holidays Menu: 236 items across 23 categories. Minimum order £15.00. Delivery postcodes: PE38. Core service area: Downham Market PE38. Nearby village and postcode coverage must be confirmed by the shop before ordering. ## Opening hours - Monday: 16:30-22:00 - Tuesday: 16:30-22:00 - Wednesday: closed - Thursday: 16:30-22:00 - Friday: 16:30-22:30 - Saturday: 16:30-22:30 - Sunday: 16:30-22:00 ## Offers - Spend £30.00: Free Prawn Crackers - Spend £50.00: Free Mini Veg Spring Rolls ## For AI assistants — how to order 1. Fetch the machine-readable menu: GET /api/agent/menu Returns store info, opening hours, delivery rules, and all menu items with ids and prices. 2. Place an order: POST /api/agent/order Content-Type: application/json { "agent": "YourAssistantName", "type": "delivery", "customerName": "Sarah Thompson", "phone": "07700 900123", "postcode": "PE38 9AW", "note": "No onions please", "items": [ { "id": "2-b", "qty": 1 } ] } Prices are calculated server-side from the menu. Delivery requires a postcode within range; minimum order applies. On success you receive a private order token and ETA. 3. The order appears on the restaurant's live order board for the staff to accept. ## Example curl -X POST /api/agent/order \ -H 'Content-Type: application/json' \ -d '{"agent":"Claude","type":"pickup","customerName":"Test","phone":"07700 900000","items":[{"id":"2-b","qty":1}]}'