get_restaurant_menu
menupages.comRetrieves a complete restaurant menu from https://menupages.com, including restaurant metadata, categories, items, prices, availability, images, popularity flags, and nested modifier/customization groups.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_restaurant_menu?
Retrieves a complete restaurant menu from https://menupages.com, including restaurant metadata, categories, items, prices, availability, images, popularity flags, and nested modifier/customization groups. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass restaurant_url and get the result back without maintaining a scraper.
Response
{
"categories": [
{}
],
"item_count": 0,
"restaurant": {},
"source_url": "<string>",
"category_count": 0,
"static_restaurant": {},
"modifier_group_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d33a465a-9cb3-4f51-a6b9-e4a52dcf0348/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d33a465a-9cb3-4f51-a6b9-e4a52dcf0348",
"variables": {
"restaurant_url": "https://menupages.com/1111-peruvian-bistro/1111-sw-1st-ave-ste-106-miami/"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d33a465a-9cb3-4f51-a6b9-e4a52dcf0348") — the "get_restaurant_menu" function, which retrieves a complete restaurant menu from https://menupages.com, including restaurant metadata, categories, items, prices, availability, images, popularity flags, and nested modifier/customization groups.. It takes restaurant_url (str). Return the result as structured JSON.