Get API Key
Meal Plans

Get Next Week's Meal Plan

Retrieve next week's meal plan for your family.

Request

GET /api/meal-plans/v1/next

Headers

HeaderRequiredDescription
X-API-KeyYesYour Home Plate API key

Parameters

This endpoint takes no parameters. It returns the meal plan for next week (the Monday after the current week through Sunday).

Response

Success (200)

Returns next week's meal plan, or null if no plan has been generated yet.

{
  "data": {
    "id": "def456",
    "weekOf": "2026-03-30T00:00:00.000Z",
    "meals": {
      "Monday": {
        "breakfast": {
          "description": "Smoothie bowl with mixed berries"
        },
        "lunch": {
          "description": "Chicken caesar salad",
          "recipeId": "recipe_234"
        },
        "dinner": {
          "description": "Beef stir-fry with vegetables",
          "recipeId": "recipe_567"
        }
      },
      "Tuesday": { ... },
      "Wednesday": { ... }
    }
  }
}

When no meal plan exists for next week:

{
  "data": null
}

Response fields

FieldTypeDescription
data.idstringUnique meal plan identifier
data.weekOfstringISO 8601 date for Monday of the plan week
data.mealsobjectMeals organized by day name (Monday–Sunday)
data.meals.[day].breakfastobject?Breakfast meal slot
data.meals.[day].lunchobject?Lunch meal slot
data.meals.[day].dinnerobject?Dinner meal slot
data.meals.[day].[meal].descriptionstringHuman-readable meal description
data.meals.[day].[meal].recipeIdstring?ID of the associated recipe (if generated)

Errors

StatusDescription
401Missing or invalid API key
402Premium subscription required

Try it

Paste your API key and send a live request.

GET/api/meal-plans/v1/next
cURL
curl -H "X-API-Key: hp_your_key_here" \
  https://www.homeplatemeal.com/api/meal-plans/v1/next