get_restaurant_menus_by_name_location
menupages.comRetrieves full menus from https://menupages.com for multiple restaurant name/location pairs by resolving each pair to a Grubhub restaurant ID. Returns per-input status, matched restaurant details, and complete menu categories, items, prices, and modifiers.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_restaurant_menus_by_name_location?
Retrieves full menus from https://menupages.com for multiple restaurant name/location pairs by resolving each pair to a Grubhub restaurant ID. Returns per-input status, matched restaurant details, and complete menu categories, items, prices, and modifiers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass restaurants, timeout_seconds, max_pages_per_city, client_id and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"results": {},
"requests": [
{
"name": "<string>",
"location": "<string>"
}
],
"error_count": 0,
"success_count": 0,
"not_found_count": 0,
"requested_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/dd70bdc2-3802-4a53-be2a-82939423f9d8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "dd70bdc2-3802-4a53-be2a-82939423f9d8",
"variables": {
"restaurants": "DEFAULT_RESTAURANTS",
"timeout_seconds": 25,
"max_pages_per_city": 15,
"client_id": "DEFAULT_CLIENT_ID"
}
}'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="dd70bdc2-3802-4a53-be2a-82939423f9d8") — the "get_restaurant_menus_by_name_location" function, which retrieves full menus from https://menupages.com for multiple restaurant name/location pairs by resolving each pair to a Grubhub restaurant ID. Returns per-input status, matched restaurant details, and complete menu categories, items, prices, and modifiers.. It takes restaurants (Any), timeout_seconds (int), max_pages_per_city (int), client_id (str). Return the result as structured JSON.