menus
menus
Browse 155 menus records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Bar Menu
#1
Premium selections paired with exceptional flavors.
-
À La Carte Menu
#2
From light bites to hearty entrees, something for everyone.
-
Brunch Menu
#3
Premium selections paired with exceptional flavors.
-
Prix Fixe Menu
#4
A thoughtfully designed menu for every palate.
-
Chef's Selection
#5
Fresh, locally sourced ingredients prepared with care.
-
Kids Menu
#6
Fresh, locally sourced ingredients prepared with care.
-
Seasonal Menu
#7
House specialties and customer favorites in one place.
-
À La Carte Menu
#8
Inspired by global cuisines and local traditions.
-
Weekend Specials
#9
Fresh, locally sourced ingredients prepared with care.
-
À La Carte Menu
#10
Classic favorites and chef-inspired creations.
-
Weekend Specials
#11
Classic favorites and chef-inspired creations.
-
Bar Menu
#12
Classic favorites and chef-inspired creations.
-
Tasting Menu
#13
House specialties and customer favorites in one place.
-
Breakfast Menu
#14
Signature dishes that define our culinary identity.
-
Brunch Menu
#15
Seasonal ingredients crafted into memorable plates.
-
Catering Menu
#16
Signature dishes that define our culinary identity.
-
Brunch Menu
#17
A curated selection of our finest dishes for the occasion.
-
Weekend Specials
#18
A curated selection of our finest dishes for the occasion.
-
Family Menu
#19
Premium selections paired with exceptional flavors.
-
Family Menu
#20
Premium selections paired with exceptional flavors.
-
Brunch Menu
#21
Classic favorites and chef-inspired creations.
-
Weekend Specials
#22
House specialties and customer favorites in one place.
-
Catering Menu
#23
From light bites to hearty entrees, something for everyone.
-
Prix Fixe Menu
#24
House specialties and customer favorites in one place.
- restaurantId
- O'Hara and Sons · New Eloisaboro · ★ 4.4
- name
- Bar Menu
- description
- Premium selections paired with exceptional flavors.
- isActive
- false
- createdAt
- updatedAt
- restaurantId
- Robel, Walter and Davis · Honolulu · ★ 4.4
- name
- À La Carte Menu
- description
- From light bites to hearty entrees, something for everyone.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Robel, Walter and Davis · Honolulu · ★ 4.4
- name
- Brunch Menu
- description
- Premium selections paired with exceptional flavors.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Harber, Wolf and Reynolds · Providencifurt · ★ 4.5
- name
- Prix Fixe Menu
- description
- A thoughtfully designed menu for every palate.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- McKenzie - Toy · Hattiesburg · ★ 2.8
- name
- Chef's Selection
- description
- Fresh, locally sourced ingredients prepared with care.
- isActive
- true
- createdAt
- updatedAt
- restaurantId
- Durgan Group · Fort Collins · ★ 3.1
- name
- Kids Menu
- description
- Fresh, locally sourced ingredients prepared with care.
- isActive
- true
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/menus?limit=25"const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = await res.json();import type { Menu, ListEnvelope } from "https://example-data.com/types/menus.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/menus?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Menu>;import requests
res = requests.get(
"https://example-data.com/api/v1/menus",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"restaurantId": 1,
"name": "Bar Menu",
"description": "Premium selections paired with exceptional flavors.",
"isActive": false,
"createdAt": "2026-02-27T19:41:54.207Z",
"updatedAt": "2026-03-29T19:01:27.613Z"
},
{
"id": 2,
"restaurantId": 2,
"name": "À La Carte Menu",
"description": "From light bites to hearty entrees, something for everyone.",
"isActive": true,
"createdAt": "2024-07-03T19:07:40.578Z",
"updatedAt": "2026-02-09T01:05:22.555Z"
},
{
"id": 3,
"restaurantId": 2,
"name": "Brunch Menu",
"description": "Premium selections paired with exceptional flavors.",
"isActive": true,
"createdAt": "2024-10-26T13:58:28.808Z",
"updatedAt": "2026-05-09T08:11:32.317Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 155,
"totalPages": 7
},
"links": {
"self": "/api/v1/menus?page=1",
"first": "/api/v1/menus?page=1",
"last": "/api/v1/menus?page=7",
"next": "/api/v1/menus?page=2",
"prev": null
}
}