All scrapers

Grocery & delivery

Uber Eats Scraper

ubereats.com

99.8% Success rate
7.9s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over

Uber Eats is a global food-delivery platform with restaurant menus and pricing that vary by city. ScrapeUnblocker renders its city and restaurant pages as a customer would see them and returns the restaurant, menu items and prices, holding 99.8% across a spread of city searches.

What you can extract

  • Restaurant name, cuisine and rating
  • Menu items and prices
  • Delivery fee and estimated time
  • City, address and open status
  • Images and listing URL

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.ubereats.com%2Fus%2Fcity%2Fnew-york-ny&parsed_data=true"
import requests

resp = requests.post(
    "https://api.scrapeunblocker.com/getPageSource",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"url": "https://www.ubereats.com/us/city/new-york-ny", "parsed_data": True},
)
print(resp.text)
import { ScrapeUnblockerClient } from 'scrapeunblocker';

const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });

const results = await su.getPageSource({
  url: 'https://www.ubereats.com/us/city/new-york-ny',
  parsedData: true,
});
console.log(results);

Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.

Read the API docs

Related scrapers

Start scraping this site today

Free tier included. No credit card required to test it.