Marketplace
No threads yet
Live

get_menu_item_details

menupages.com

Retrieves details for a specific menu item from https://menupages.com by restaurant ID and item ID. Returns item name, description, price, availability, popularity, image URL, tags, and full modifier/customization options.

Parameters5
Runs8
Updated8d ago
Operational8 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_menu_item_details?

Retrieves details for a specific menu item from https://menupages.com by restaurant ID and item ID. Returns item name, description, price, availability, popularity, image URL, tags, and full modifier/customization options. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass restaurant_id, item_id, include_unavailable, timeout_seconds, client_id and get the result back without maintaining a scraper.

Response

{
  "item": {},
  "tags": [
    {}
  ],
  "price": {},
  "source": "<string>",
  "item_id": "<string>",
  "popular": true,
  "category": {},
  "available": true,
  "image_url": "<string>",
  "item_name": "<string>",
  "restaurant": {},
  "description": "<string>",
  "restaurant_id": "<string>",
  "modifier_groups": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a0d4eeb0-197b-47e7-bcd7-e9f6318f0dae/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a0d4eeb0-197b-47e7-bcd7-e9f6318f0dae",
    "variables": {
        "restaurant_id": "337444",
        "item_id": "23493433",
        "include_unavailable": true,
        "timeout_seconds": 25,
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="a0d4eeb0-197b-47e7-bcd7-e9f6318f0dae") — the "get_menu_item_details" function, which retrieves details for a specific menu item from https://menupages.com by restaurant ID and item ID. Returns item name, description, price, availability, popularity, image URL, tags, and full modifier/customization options..

It takes restaurant_id (str), item_id (str), include_unavailable (bool), timeout_seconds (int), client_id (str). Return the result as structured JSON.