- query
- The Uber Eats URL you submitted, repeated on every row that came from it. A city or category URL produces many rows; a store URL produces one.
- name
- The restaurant name, as Uber Eats lists it. Often carries a branch suffix, as in
Famous Cajun/Chinese Grill - Memorial Rd. - cuisines
- The cuisine tags Uber Eats files the restaurant under, as a comma-separated list in one cell -
Chinese, Asian, Asian Fusion. Split on the comma if you want to group by a single tag. - rating
- The star rating, as a string. Not zero-padded:
4 and 4.2 both occur, so cast before you sort or compare. - reviews
- The review figure Uber Eats shows. Treat it as a display band, not a count - past roughly a hundred the values arrive rounded, so summing or averaging this column is misleading. See the note below.
- price_range
- A price band, as one or two repeated currency symbols. The symbol is not a reliable currency: US-addressed rows came back with
£ and € as well as $. Optional - some listings carry none. - address
- The street line of the restaurant's address.
- city
- The city or town.
- region
- The state or region code -
OK, TX in our runs. - postcode
- The postal code.
- country
- A two-letter country code for the restaurant's address.
- phone
- The contact number in E.164 - a leading plus followed by digits, with no spaces or punctuation. Ready to dial or to load without cleaning.
- url
- Link to the store on Uber Eats. This is also accepted as input, so a city run gives you the URLs to pull individual restaurants later.
- image
- The restaurant's header image, on Uber's image CDN.
- position
- 1-based rank within the query, in the order Uber Eats listed the restaurant. JSON only - the CSV and XLSX exports stop at fourteen columns.