Sign In

List Menus

Retrieve a paginated list of weekly menus with optional filtering.

GET /{locale}-{country}/menus

Query Parameters

Parameter Type Description
include_recipes boolean Include recipes in response
from date Filter menus starting from this date
to date Filter menus up to this date
per_page integer Results per page (10-200, default 50)

Response Fields

Field Type Description
id integer Menu ID
url string URL to menu on website
year_week integer Year and week number (YYYYWW format)
start date Menu start date
recipes array Array of recipe objects (when include_recipes=true)
created_at datetime Creation timestamp
updated_at datetime Last update timestamp

Example Request

curl -X GET "https:///de-DE/menus?include_recipes=true&per_page=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"

Pre-Release API (vunknown)

This API is currently in pre-release. Endpoints, response formats, and features may change without notice until version 1.0.0 is released. Use in production at your own risk.