Retrieve a paginated list of weekly menus with optional filtering.
GET
/{locale}-{country}/menus
|
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) |
|
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 |
curl -X GET "https://api.hfresh.info/de-DE/menus?include_recipes=true&per_page=10" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"