← Back to docs
Recipe

Trip packing list generator

Generate a complete packing list from a destination, trip length, and activity tags. Meridian calls your endpoint, parses the structured response, and renders it as a checklist the user can tick off.

Input schema

{
  "destination": "string",
  "days": "number",
  "activities": ["string"]
}

Output schema

{
  "categories": [
    {
      "name": "string",
      "items": [
        {
          "label": "string",
          "quantity": "number",
          "essential": "boolean"
        }
      ]
    }
  ]
}

Example prompt

Destination: Reykjavik

Days: 5

Activities: hiking, hot springs, photography

Endpoint

POST your endpoint URL in the Meridian dashboard under Settings → Recipes. Meridian sends the input schema as JSON and expects the output schema in response within 15 seconds.