Restaurant Menu Scraper avatar
Restaurant Menu Scraper

Pricing

$15.00 / 1,000 results

Go to Apify Store
Restaurant Menu Scraper

Restaurant Menu Scraper

Menu Scraper: AI-powered Apify Actor for discovering and extracting restaurant menus. Scrape detailed menu items, descriptions, and prices from official websites. Ideal for web scraping, food data aggregation, and restaurant analysis.

Pricing

$15.00 / 1,000 results

Rating

0.0

(0)

Developer

Benjamin

Benjamin

Maintained by Community

Actor stats

0

Bookmarked

7

Total users

2

Monthly active users

10 days ago

Last modified

Share

Menu Scraper

Usage Instructions

This Apify Actor scrapes menu data from restaurant websites. It requires a list of URLs as input.

  1. Prepare Input: Provide input in JSON format conforming to the schema in menu-scraper/.actor/input_schema.json. Example:
    {
    "urls": ["https://example.com", "https://another-restaurant.com"]
    }

Result Format

Results are stored in the default dataset as JSON objects. Each object represents menu data from one URL, with a structure like:

{
"url": "https://example.com/menu",
"menu": [
{
"item": "Vegan Burger",
"description": "Plant-based patty with veggies",
"price": "12.99"
},
{
"item": "Salad",
"description": "Fresh greens and dressing",
"price": "8.50"
}
],
"extracted_at": "2023-10-01T12:00:00Z"
}

If extraction fails for a URL, the object may include an "error" field instead of "menu".