Skip to main content
POST
/
api
/
ubereats
/
stores
/ubereats/stores
curl --request POST \
  --url https://api.anysite.io/api/ubereats/stores \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "store": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "UbereatsStore",
    "name": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "images": [],
    "phone": "<string>",
    "rating": 123,
    "review_count": 123,
    "price_range": "<string>",
    "currency": "<string>",
    "eta": "<string>",
    "is_open": true,
    "is_orderable": true,
    "city": "<string>",
    "city_slug": "<string>",
    "cuisines": [],
    "chain": {
      "id": "<string>",
      "@type": "UbereatsChain",
      "name": "<string>"
    },
    "address": {
      "@type": "UbereatsStoreAddress",
      "address": "<string>",
      "street": "<string>",
      "city": "<string>",
      "region": "<string>",
      "postcode": "<string>",
      "country": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "hours": [],
    "category_count": 0,
    "item_count": 0,
    "review_in_app_count": 0,
    "menu": [],
    "reviews": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
store
string
required

Uber Eats store as a full store URL, the store id from the URL, or the store UUID

Minimum string length: 1
Examples:

"https://www.ubereats.com/store/home-slice-pizza-s-congress/5y1hT9ipUYGYvIgY7A1N5A"

"5y1hT9ipUYGYvIgY7A1N5A"

"e72d614f-d8a9-5181-98bc-8818ec0d4de4"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:UbereatsStore
name
string | null
alias
string | null
image
string | null
images
string[]
phone
string | null
rating
number | null
review_count
integer | null
price_range
string | null
currency
string | null
eta
string | null
is_open
boolean | null
is_orderable
boolean | null
city
string | null
city_slug
string | null
cuisines
string[]
chain
object
address
object
hours
object[]
category_count
integer
default:0
item_count
integer
default:0
review_in_app_count
integer
default:0
menu
object[]
reviews
object[]