Feinkost Kombinat APIfeinkost-kombinat.de ↗
Discover the weekly lunch menu from Feinkost Kombinat with daily dishes, pricing, and special offerings available each weekday. Plan your meals ahead with access to complete menu details and weekly specials.
curl -X GET 'https://api.parse.bot/scraper/99340906-db30-407d-8d82-ed9a393f86ad/get_weekly_menu?week=current' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the lunch menu for the current or next week. Each response includes daily dishes (with day name, date, dish title, and price) and weekly specials (Lieblinge der Woche) available every day Monday to Friday. The site publishes two weeks at a time: the current week and the upcoming week.
| Param | Type | Description |
|---|---|---|
| week | string | Which week's menu to fetch. |
{
"type": "object",
"fields": {
"week_dates": "string - date range for the week, e.g. '10.08. bis 14.08.2026'",
"week_title": "string - title of the menu, e.g. 'KW 34 SPEISEKARTE' or 'AKTUELLE SPEISEKARTE'",
"daily_dishes": "array of daily dish objects, each with title, price, date (DD.MM.YYYY), and day name",
"weekly_dishes": "array of weekly special dishes available all week, each with title, price, and availability note"
},
"sample": {
"data": {
"week_dates": "10.08. bis 14.08.2026",
"week_title": "AKTUELLE SPEISEKARTE",
"daily_dishes": [
{
"day": "Montag",
"date": "10.08.2026",
"price": "9,00EUR",
"title": "Zwei Eier in Senfsosse mit Petersilienkartoffeln und kleinem Salat"
},
{
"day": "Dienstag",
"date": "11.08.2026",
"price": "9,50EUR",
"title": "Omas Bratklops mit Schmorzwiebeln, rahmigem Kohlrabi und Kartoffelstampf"
},
{
"day": "Freitag",
"date": "14.08.2026",
"price": "9,00EUR",
"title": "Grosse Ofenkartoffel mit Kraeuterquark und Sommersalat"
}
],
"weekly_dishes": [
{
"price": "6,00EUR",
"title": "Zucchinicremesuppchen mit Zitrusoel und Crostini",
"availability": "ganze Woche (Montag bis Freitag)"
},
{
"price": "15,00EUR",
"title": "Spare Ribs BBQ-Style mit Ofenkartoffel und Sour Cream",
"availability": "ganze Woche (Montag bis Freitag)"
},
{
"price": "4,00EUR",
"title": "Tiramisu",
"availability": "ganze Woche (Montag bis Freitag)"
}
]
},
"status": "success"
}
}About the Feinkost Kombinat API
The Feinkost Kombinat API on Parse exposes 1 endpoint for the publicly available data on feinkost-kombinat.de. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.