This no-code tool allows you to scrape data from Uber Eats restaurants, like name, categories, location, menu items, and more.
The Uber Eats Scraper extracts restaurant data from the Uber Eats website. The data includes the restaurant name, rating, number of ratings, categories, location, hours, phone number and the menu items.
This scraper requires a list of Uber Eats restaurant URLs. The URLs can be obtained by searching for restaurants on the Uber Eats website.
1{ 2 "restaurantUrls": [ 3 "https://www.ubereats.com/store/...", 4 "https://www.ubereats.com/store/...", 5 "https://www.ubereats.com/store/..." 6 ], 7 "scrapeMenu": true 8 }
This scraper returns a list of restaurant objects. For each restaurant, the following information is extracted:
Here's an example in JSON format:
1{ 2 "logoUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/41e448619de9527990482249b90f154c/d9be3fc772fc6c0fd6b3471e291aa823.jpeg", 3 "name": "McDonald's® (700 WEST 4TH STREET)", 4 "categories": [ 5 "$", 6 "American", 7 "Burgers", 8 "Fast Food" 9 ], 10 "rating": 4, 11 "reviewCount": "2000+", 12 "currencyCode": "USD", 13 "location": { 14 "address": "700 West 4th Street, WILMINGTON, DE 19801", 15 "city": "WILMINGTON", 16 "postalCode": "19801", 17 "country": "US", 18 "latitude": 39.7428822, 19 "longitude": -75.5582046, 20 "locationType": "DEFAULT" 21 }, 22 "phoneNumber": "+12345678900", 23 "uuid": "0fdbd83e-7825-444a-8c3d-2e01166efb16", 24 "hours": [ 25 { 26 "dayRange": "Sunday", 27 "sectionHours": [ 28 { 29 "startTime": 240, 30 "endTime": 659, 31 "sectionTitle": "Breakfast", 32 "startTimeFormatted": "4:00 AM", 33 "endTimeFormatted": "10:59 AM" 34 }, 35 { 36 "startTime": 660, 37 "endTime": 1019, 38 "sectionTitle": "Lunch", 39 "startTimeFormatted": "11:00 AM", 40 "endTimeFormatted": "4:59 PM" 41 }, 42 { 43 "startTime": 1020, 44 "endTime": 239, 45 "sectionTitle": "Dinner", 46 "startTimeFormatted": "5:00 PM", 47 "endTimeFormatted": "3:59 AM" 48 } 49 ] 50 }, 51 { 52 "dayRange": "Monday - Friday", 53 "sectionHours": [ 54 { 55 "startTime": 240, 56 "endTime": 629, 57 "sectionTitle": "Breakfast", 58 "startTimeFormatted": "4:00 AM", 59 "endTimeFormatted": "10:29 AM" 60 }, 61 { 62 "startTime": 630, 63 "endTime": 1019, 64 "sectionTitle": "Lunch", 65 "startTimeFormatted": "10:30 AM", 66 "endTimeFormatted": "4:59 PM" 67 }, 68 { 69 "startTime": 1020, 70 "endTime": 239, 71 "sectionTitle": "Dinner", 72 "startTimeFormatted": "5:00 PM", 73 "endTimeFormatted": "3:59 AM" 74 } 75 ] 76 }, 77 { 78 "dayRange": "Saturday", 79 "sectionHours": [ 80 { 81 "startTime": 240, 82 "endTime": 659, 83 "sectionTitle": "Breakfast", 84 "startTimeFormatted": "4:00 AM", 85 "endTimeFormatted": "10:59 AM" 86 }, 87 { 88 "startTime": 660, 89 "endTime": 1019, 90 "sectionTitle": "Lunch", 91 "startTimeFormatted": "11:00 AM", 92 "endTimeFormatted": "4:59 PM" 93 }, 94 { 95 "startTime": 1020, 96 "endTime": 239, 97 "sectionTitle": "Dinner", 98 "startTimeFormatted": "5:00 PM", 99 "endTimeFormatted": "3:59 AM" 100 } 101 ] 102 } 103 ], 104 "url": "https://www.ubereats.com/store/mcdonalds-700-west-4th-street/D9vYPnglREqMPS4BFm77Fg", 105 "menuItems": [ 106 { 107 "imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/a9d2a15dd02bad1a257659a7cb34a5c2/a19bb09692310dfd41e49a96c424b3a6.jpeg", 108 "title": "10 pc. Chicken McNuggets®", 109 "price": 7.59, 110 "priceString": "$7.59 • 410 Cal.", 111 "isSoldOut": false, 112 "uuid": "5a885a57-eb02-5279-be0e-57b1ab76348e", 113 "optionsList": [ 114 { 115 "title": "Select Sauce", 116 "maxPermitted": 2, 117 "minPermitted": 2, 118 "uuid": "05392077-6c5a-5aae-ac1a-422a4f5269fc", 119 "options": [ 120 { 121 "title": "Tangy BBQ Dipping Sauce", 122 "price": 0, 123 "isSoldOut": false, 124 "maxPermitted": 2, 125 "minPermitted": 0, 126 "uuid": "9fe06c71-3e60-5e88-a48e-d62eaf84738c" 127 }, 128 { 129 "title": "Sweet N Sour Dipping Sauce", 130 "price": 0, 131 "isSoldOut": false, 132 "maxPermitted": 2, 133 "minPermitted": 0, 134 "uuid": "1b71e81c-fd51-56e6-92b3-206286a12ea4" 135 }, 136 { 137 "title": "Honey Packet", 138 "price": 0, 139 "isSoldOut": false, 140 "maxPermitted": 2, 141 "minPermitted": 0, 142 "uuid": "f058a4a1-e4de-5cd7-b8d2-545bd5b78dc5" 143 }, 144 { 145 "title": "Hot Mustard Dipping Sauce", 146 "price": 0, 147 "isSoldOut": false, 148 "maxPermitted": 2, 149 "minPermitted": 0, 150 "uuid": "7c04ef48-203b-53f2-af10-3ed29a9ecb35" 151 }, 152 { 153 "title": "Creamy Ranch Sauce", 154 "price": 0, 155 "isSoldOut": false, 156 "maxPermitted": 2, 157 "minPermitted": 0, 158 "uuid": "ca4746e1-8d23-5ab0-835a-881fb295b762" 159 }, 160 { 161 "title": "Hot Picante Salsa", 162 "price": 0, 163 "isSoldOut": false, 164 "maxPermitted": 2, 165 "minPermitted": 0, 166 "uuid": "455a684a-af0f-5ae6-945f-23e6c0e2aabe" 167 }, 168 { 169 "title": "Mild Picante Salsa", 170 "price": 0, 171 "isSoldOut": false, 172 "maxPermitted": 2, 173 "minPermitted": 0, 174 "uuid": "7d97990d-ded4-54d9-a204-13f751567441" 175 }, 176 { 177 "title": "Ketchup Packet", 178 "price": 0, 179 "isSoldOut": false, 180 "maxPermitted": 2, 181 "minPermitted": 0, 182 "uuid": "19ac12f8-5dfe-54ed-88bc-6a120f1e1eae" 183 }, 184 { 185 "title": "Honey Mustard", 186 "price": 0, 187 "isSoldOut": false, 188 "maxPermitted": 2, 189 "minPermitted": 0, 190 "uuid": "5735fdf1-650b-52b8-8b64-ee635ac04de8" 191 }, 192 { 193 "title": "Spicy Buffalo", 194 "price": 0, 195 "isSoldOut": false, 196 "maxPermitted": 2, 197 "minPermitted": 0, 198 "uuid": "84cc2969-eb04-5e48-a556-3d15397c6e5e" 199 }, 200 { 201 "title": "No Sauce", 202 "price": 0, 203 "isSoldOut": false, 204 "maxPermitted": 2, 205 "minPermitted": 0, 206 "uuid": "be18d6eb-9fa9-55c3-9c50-729d2cbd0d3e" 207 } 208 ] 209 } 210 ] 211 }, 212 { 213 "imageUrl": "https://d1ralsognjng37.cloudfront.net/164cb56d-1739-4e90-be91-68652990abde.jpeg", 214 "title": "McCrispy™", 215 "price": 5.89, 216 "priceString": "$5.89 • 470 Cal.", 217 "isSoldOut": false, 218 "uuid": "49483377-ff61-52e2-a535-47eda05ce49b", 219 "optionsList": [ 220 { 221 "title": "McCrispy™ Comes With", 222 "maxPermitted": 7, 223 "minPermitted": 0, 224 "uuid": "fb27041c-18b0-545a-9008-379b83a417d7", 225 "options": [ 226 { 227 "title": "Butter", 228 "price": 0, 229 "isSoldOut": false, 230 "maxPermitted": 2, 231 "minPermitted": 0, 232 "uuid": "f2f105bc-6edd-55d3-98f2-942e04dbd6dc" 233 }, 234 { 235 "title": "Crinkle Cut Pickle", 236 "price": 0.35, 237 "isSoldOut": false, 238 "maxPermitted": 2, 239 "minPermitted": 0, 240 "uuid": "4ab28eaf-6984-513b-bc7c-a7163e17ec53" 241 }, 242 { 243 "title": "McCrispy™ Filet", 244 "price": 2.99, 245 "isSoldOut": false, 246 "maxPermitted": 2, 247 "minPermitted": 0, 248 "uuid": "a4013e7e-4684-5e41-9d36-f779cf9a4eb6" 249 }, 250 { 251 "title": "Potato Roll", 252 "price": 0.7, 253 "isSoldOut": false, 254 "maxPermitted": 1, 255 "minPermitted": 0, 256 "uuid": "9b9f6cb0-77e7-5cbf-9b92-eb3e39a54651" 257 } 258 ] 259 }, 260 { 261 "title": "McCrispy™ Additions", 262 "maxPermitted": 10, 263 "minPermitted": 0, 264 "uuid": "4f8eb851-3dc1-5c5c-9fa9-d8a3d31ea598", 265 "options": [ 266 { 267 "title": "American Cheese", 268 "price": 1.59, 269 "isSoldOut": false, 270 "maxPermitted": 2, 271 "minPermitted": 0, 272 "uuid": "5e3550c4-f02a-5847-8f4d-06fce2e73574" 273 }, 274 { 275 "title": "3 Half Strips Bacon", 276 "price": 3.35, 277 "isSoldOut": false, 278 "maxPermitted": 2, 279 "minPermitted": 0, 280 "uuid": "df83268d-86db-5cd5-ab13-666e16ad5b62" 281 }, 282 { 283 "title": "Mustard", 284 "price": 0, 285 "isSoldOut": false, 286 "maxPermitted": 2, 287 "minPermitted": 0, 288 "uuid": "adfec5ce-16bf-5254-8367-3da666f84c90" 289 }, 290 { 291 "title": "Ketchup", 292 "price": 0, 293 "isSoldOut": false, 294 "maxPermitted": 2, 295 "minPermitted": 0, 296 "uuid": "fdec8e3a-926c-5c15-b89f-fa6c72e2d008" 297 }, 298 { 299 "title": "Mayonnaise", 300 "price": 0.49, 301 "isSoldOut": false, 302 "maxPermitted": 2, 303 "minPermitted": 0, 304 "uuid": "9a4b4971-b56d-5bc5-9007-ad56a0eef727" 305 } 306 ] 307 } 308 ] 309 } 310 ] 311}
Last but not least, Uber Eats Scraper can be connected with almost any cloud service or web app thanks to integrations on the Apify platform. You can integrate with Make, Zapier, Slack, Airbyte, GitHub, Google Sheets, Google Drive, and more. Or you can use webhooks to carry out an action whenever an event occurs, e.g. get a notification whenever Uber Eats Scraper successfully finishes a run.
The Apify API gives you programmatic access to the Apify platform. The API is organized around RESTful HTTP endpoints that enable you to manage, schedule, and run Apify actors. The API also lets you access any datasets, monitor actor performance, fetch results, create and update versions, and more.
To access the API using Node.js, use the apify-client NPM package. To access the API using Python, use the apify-client PyPI package.
Check out the Apify API reference docs for full details.
If you have any feature requests or bug reports, please create an issue on the Issues page.
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!