Catering orders

Catering order

Confirm a catering order with the guest count, menu, and total cost.

File types
PDF
Size
A4 PDF
Use case
Catering orders
Licence
Free to copy and use in your own templates
Source
Made by thirds.ai with the open-licence Fraunces font, original graphic marks, and fictional sample names.
A portrait A4 catering order on white paper, an olive green Guests 32 circle badge, an orange order number pill, the olive headline Northline autumn gathering, a striped menu table, and an orange-outlined $540.00 total box.
catering-order/template.html

About this design

What you can make with it.

Caterers send this once a client agrees the food for an event. It shows the event, date, delivery time, guest count, and venue, then lists each course and item with its price and any dietary note. Update the guest count, menu, and total for every event you cater.

Your details

What you can change.

These are the words and numbers you swap for your own. The design stays the same.

  1. Caterer nameA short text.
  2. Order numberA short text.
  3. Event nameA short text.
  4. Event dateA short text.
  5. Delivery timeA short text.
  6. Client nameA short text.
  7. Guest countA number.
  8. VenueA short text.
  9. ItemsA list of items. Each item has course, item, quantity and notes.
  10. SubtotalA number.
  11. Delivery feeA number.
  12. TotalA number.
  13. Dietary noteA longer text with more than one line.
  14. ContactA short text.
  15. FooterA short text.
Sample data
{
  "caterer_name": "Common Table Kitchen",
  "order_number": "CTK-2026-104",
  "event_name": "Northline autumn gathering",
  "event_date": "2026-10-08",
  "delivery_time": "11:30, ready for 12:00",
  "client_name": "Northline Studio",
  "guest_count": 32,
  "venue": "Harbour room, Bristol",
  "items": [
    {
      "course": "Welcome",
      "item": "Citrus water and oat biscuits",
      "quantity": 32,
      "notes": "Place by the entry table"
    },
    {
      "course": "Lunch",
      "item": "Roasted squash grain bowls",
      "quantity": 32,
      "notes": "Dressing on the side"
    },
    {
      "course": "Lunch",
      "item": "Herb chicken flatbreads",
      "quantity": 24,
      "notes": "Cut into halves"
    },
    {
      "course": "Lunch",
      "item": "Mushroom flatbreads",
      "quantity": 8,
      "notes": "Vegetarian option"
    },
    {
      "course": "Sweet",
      "item": "Apple and oat traybake",
      "quantity": 32,
      "notes": "Small pieces"
    },
    {
      "course": "Drinks",
      "item": "Sparkling elderflower",
      "quantity": 40,
      "notes": "Chill before service"
    },
    {
      "course": "Drinks",
      "item": "Filter coffee and tea",
      "quantity": 40,
      "notes": "Set up near the entry"
    }
  ],
  "subtotal": 512,
  "delivery_fee": 28,
  "total": 540,
  "dietary_note": "Three gluten-free meals and one nut-free tray. Label all special plates clearly before service.",
  "contact": "Samira Khan, orders@commontable.example",
  "footer": "Common Table Kitchen, 6 Mill Lane, Bristol BS2 0JQ"
}

For developers

Make this file from your code or your AI tools.

Save your copy once, then send the new details with each request. Each finished file costs 1 credit.

API request
curl https://thirds.ai/v1/pdf \
  -H "Authorization: Bearer $THIRDS_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: catering-order-1" \
  -d '{"template_id":"tpl_your_copy","version":1,"data":{"caterer_name":"Common Table Kitchen","order_number":"CTK-2026-104","event_name":"Northline autumn gathering","event_date":"2026-10-08","delivery_time":"11:30, ready for 12:00","client_name":"Northline Studio","guest_count":32,"venue":"Harbour room, Bristol","items":[{"course":"Welcome","item":"Citrus water and oat biscuits","quantity":32,"notes":"Place by the entry table"},{"course":"Lunch","item":"Roasted squash grain bowls","quantity":32,"notes":"Dressing on the side"},{"course":"Lunch","item":"Herb chicken flatbreads","quantity":24,"notes":"Cut into halves"},{"course":"Lunch","item":"Mushroom flatbreads","quantity":8,"notes":"Vegetarian option"},{"course":"Sweet","item":"Apple and oat traybake","quantity":32,"notes":"Small pieces"},{"course":"Drinks","item":"Sparkling elderflower","quantity":40,"notes":"Chill before service"},{"course":"Drinks","item":"Filter coffee and tea","quantity":40,"notes":"Set up near the entry"}],"subtotal":512,"delivery_fee":28,"total":540,"dietary_note":"Three gluten-free meals and one nut-free tray. Label all special plates clearly before service.","contact":"Samira Khan, orders@commontable.example","footer":"Common Table Kitchen, 6 Mill Lane, Bristol BS2 0JQ"}}'
MCP call
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "render",
    "arguments": {
      "output": "pdf",
      "idempotency_key": "catering-order-1",
      "request": {
        "template_id": "tpl_your_copy",
        "version": 1,
        "data": {
          "caterer_name": "Common Table Kitchen",
          "order_number": "CTK-2026-104",
          "event_name": "Northline autumn gathering",
          "event_date": "2026-10-08",
          "delivery_time": "11:30, ready for 12:00",
          "client_name": "Northline Studio",
          "guest_count": 32,
          "venue": "Harbour room, Bristol",
          "items": [
            {
              "course": "Welcome",
              "item": "Citrus water and oat biscuits",
              "quantity": 32,
              "notes": "Place by the entry table"
            },
            {
              "course": "Lunch",
              "item": "Roasted squash grain bowls",
              "quantity": 32,
              "notes": "Dressing on the side"
            },
            {
              "course": "Lunch",
              "item": "Herb chicken flatbreads",
              "quantity": 24,
              "notes": "Cut into halves"
            },
            {
              "course": "Lunch",
              "item": "Mushroom flatbreads",
              "quantity": 8,
              "notes": "Vegetarian option"
            },
            {
              "course": "Sweet",
              "item": "Apple and oat traybake",
              "quantity": 32,
              "notes": "Small pieces"
            },
            {
              "course": "Drinks",
              "item": "Sparkling elderflower",
              "quantity": 40,
              "notes": "Chill before service"
            },
            {
              "course": "Drinks",
              "item": "Filter coffee and tea",
              "quantity": 40,
              "notes": "Set up near the entry"
            }
          ],
          "subtotal": 512,
          "delivery_fee": 28,
          "total": 540,
          "dietary_note": "Three gluten-free meals and one nut-free tray. Label all special plates clearly before service.",
          "contact": "Samira Khan, orders@commontable.example",
          "footer": "Common Table Kitchen, 6 Mill Lane, Bristol BS2 0JQ"
        }
      }
    }
  }
}

Make this design yours.

Open it in the editor, change anything you like, and keep it with your own templates. Your first 50 credits each month are free.