List menu items
/v1/menu_items Scope: menu:readReturns menu items for the restaurant. Filter by category, availability, and active state.
Query parameters
limitintegerOptionalPage size, default 10, max 100.
starting_afterstringOptionalCursor from a previous response.
ending_beforestringOptionalCursor for backwards pagination.
categorystringOptionalFilter to a single menu_category id (mc_…).
is_availablebooleanOptionaltrue to return only items currently in stock.
is_activebooleanOptionalfalse to include soft-deleted items.
expandstring[]Optionalcategory, modifier_groups.
Request
curl 'https://api.tablezio.com/v1/menu_items?is_available=true&limit=20' \
-H 'X-API-Key: tbz_…'Response
{
"object": "list",
"data": [ /* menu_item objects */ ],
"has_more": false,
"next_cursor": null,
"previous_cursor": null,
"url": "/v1/menu_items"
}