> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /ubereats/stores

> Get full Uber Eats (ubereats.com) store details by store URL, store id or store UUID: name, address, phone, rating, review count, cuisines, price range, opening hours, parent chain and the complete menu with categories, items, prices, descriptions, images and availability, plus recent customer reviews.

**Price:** 10 credits

**💡 AI Hint:** Fetch a single Uber Eats (ubereats.com) store/restaurant by its store URL ('https://www.ubereats.com/store/{slug}/{id}'), the {id} from that URL, or the store UUID. Returns id, url, name, alias, image, images, phone, rating, review_count, price_range, currency, eta, is_open, is_orderable, city, city_slug, cuisines, chain (id, name), address (street, city, region, postcode, country, latitude, longitude), hours, category_count, item_count and the full menu as categories, each with items (name, description, price, image, is_available, is_sold_out, has_customizations), plus recent reviews (author, text, created_at).

**⚠️ Common errors:** 412: Store not found (well-formed id but no such store on Uber Eats)



## OpenAPI

````yaml /openapi-filtered.json post /api/ubereats/stores
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/ubereats/stores:
    post:
      tags:
        - /ubereats
      summary: /ubereats/stores
      description: >-
        Get full Uber Eats (ubereats.com) store details by store URL, store id
        or store UUID: name, address, phone, rating, review count, cuisines,
        price range, opening hours, parent chain and the complete menu with
        categories, items, prices, descriptions, images and availability, plus
        recent customer reviews.


        **Price:** 10 credits


        **💡 AI Hint:** Fetch a single Uber Eats (ubereats.com) store/restaurant
        by its store URL ('https://www.ubereats.com/store/{slug}/{id}'), the
        {id} from that URL, or the store UUID. Returns id, url, name, alias,
        image, images, phone, rating, review_count, price_range, currency, eta,
        is_open, is_orderable, city, city_slug, cuisines, chain (id, name),
        address (street, city, region, postcode, country, latitude, longitude),
        hours, category_count, item_count and the full menu as categories, each
        with items (name, description, price, image, is_available, is_sold_out,
        has_customizations), plus recent reviews (author, text, created_at).


        **⚠️ Common errors:** 412: Store not found (well-formed id but no such
        store on Uber Eats)
      operationId: __api_ubereats_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UbereatsStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UbereatsStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UbereatsStoresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        store:
          type: string
          minLength: 1
          description: >-
            Uber Eats store as a full store URL, the store id from the URL, or
            the store UUID
          examples:
            - >-
              https://www.ubereats.com/store/home-slice-pizza-s-congress/5y1hT9ipUYGYvIgY7A1N5A
            - 5y1hT9ipUYGYvIgY7A1N5A
            - e72d614f-d8a9-5181-98bc-8818ec0d4de4
      type: object
      required:
        - store
    UbereatsStore:
      properties:
        '@type':
          type: string
          default: UbereatsStore
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        phone:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        price_range:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        eta:
          anyOf:
            - type: string
            - type: 'null'
        is_open:
          anyOf:
            - type: boolean
            - type: 'null'
        is_orderable:
          anyOf:
            - type: boolean
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        city_slug:
          anyOf:
            - type: string
            - type: 'null'
        cuisines:
          items:
            type: string
          type: array
          default: []
        chain:
          anyOf:
            - $ref: '#/components/schemas/UbereatsChain'
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/UbereatsStoreAddress'
            - type: 'null'
        hours:
          items:
            $ref: '#/components/schemas/UbereatsHours'
          type: array
          default: []
        category_count:
          type: integer
          default: 0
        item_count:
          type: integer
          default: 0
        review_in_app_count:
          type: integer
          default: 0
        menu:
          items:
            $ref: '#/components/schemas/UbereatsMenuCategory'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/UbereatsReview'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    UbereatsChain:
      properties:
        '@type':
          type: string
          default: UbereatsChain
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    UbereatsStoreAddress:
      properties:
        '@type':
          type: string
          default: UbereatsStoreAddress
        address:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    UbereatsHours:
      properties:
        '@type':
          type: string
          default: UbereatsHours
        day_range:
          anyOf:
            - type: string
            - type: 'null'
        ranges:
          items:
            type: string
          type: array
          default: []
      type: object
    UbereatsMenuCategory:
      properties:
        '@type':
          type: string
          default: UbereatsMenuCategory
        id:
          type: string
        name:
          type: string
        items:
          items:
            $ref: '#/components/schemas/UbereatsMenuItem'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    UbereatsReview:
      properties:
        '@type':
          type: string
          default: UbereatsReview
        id:
          type: string
        author:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        time_since:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
    UbereatsMenuItem:
      properties:
        '@type':
          type: string
          default: UbereatsMenuItem
        id:
          type: string
        name:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          type: boolean
          default: true
        is_sold_out:
          type: boolean
          default: false
        has_customizations:
          type: boolean
          default: false
      type: object
      required:
        - id
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````