> ## 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/search

> Search Uber Eats (ubereats.com) stores near a delivery location by keyword and filters (cuisine/dish keyword, sort, minimum rating, price tier, delivery fee, delivery time, offers). Returns store cards with id, url, name, rating, review count, delivery ETA and current offer.

**Price:** 10 credits

**💡 AI Hint:** Search Uber Eats (ubereats.com) stores near a latitude/longitude. Optional free-text 'query' (dish, cuisine or store name) and filters: sort (recommended/rating/delivery_time), min_rating (3..5), price ($..$$$$), max_delivery_fee, under_30_min, best_overall, offers, benefits_eligible, snap. Returns store cards (id, url, name, alias, image, rating, review_count, eta, is_orderable, offer). Use ubereats/stores with a returned id/url to fetch the full store details and menu.



## OpenAPI

````yaml /openapi-filtered.json post /api/ubereats/stores/search
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/search:
    post:
      tags:
        - /ubereats
      summary: /ubereats/stores/search
      description: >-
        Search Uber Eats (ubereats.com) stores near a delivery location by
        keyword and filters (cuisine/dish keyword, sort, minimum rating, price
        tier, delivery fee, delivery time, offers). Returns store cards with id,
        url, name, rating, review count, delivery ETA and current offer.


        **Price:** 10 credits


        **💡 AI Hint:** Search Uber Eats (ubereats.com) stores near a
        latitude/longitude. Optional free-text 'query' (dish, cuisine or store
        name) and filters: sort (recommended/rating/delivery_time), min_rating
        (3..5), price ($..$$$$), max_delivery_fee, under_30_min, best_overall,
        offers, benefits_eligible, snap. Returns store cards (id, url, name,
        alias, image, rating, review_count, eta, is_orderable, offer). Use
        ubereats/stores with a returned id/url to fetch the full store details
        and menu.
      operationId: __api_ubereats_stores_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UbereatsStoresSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UbereatsStoreCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UbereatsStoresSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        latitude:
          type: number
          maximum: 90
          minimum: -90
          description: Delivery location latitude
        longitude:
          type: number
          maximum: 180
          minimum: -180
          description: Delivery location longitude
        query:
          type: string
          minLength: 1
          description: Search keyword (dish, cuisine or store name)
        count:
          type: integer
          minimum: 1
          description: Max number of stores to return
        sort:
          anyOf:
            - $ref: '#/components/schemas/UbereatsSort'
            - type: 'null'
          description: Result ordering
        min_rating:
          anyOf:
            - $ref: '#/components/schemas/UbereatsMinRating'
            - type: 'null'
          description: Only stores at or above this star rating
        price:
          items:
            $ref: '#/components/schemas/UbereatsPrice'
          type: array
          description: Keep only stores in these price tiers
          default: []
        max_delivery_fee:
          anyOf:
            - $ref: '#/components/schemas/UbereatsDeliveryFee'
            - type: 'null'
          description: Only stores at or below this delivery fee
        under_30_min:
          type: boolean
          description: Only stores delivering in under 30 minutes
          default: false
        best_overall:
          type: boolean
          description: Only top-rated 'Best overall' stores from Uber Eats
          default: false
        offers:
          type: boolean
          description: Only stores currently running offers/deals
          default: false
        benefits_eligible:
          type: boolean
          description: Only stores eligible for member benefits
          default: false
        snap:
          type: boolean
          description: Only stores accepting SNAP/EBT
          default: false
      type: object
      required:
        - latitude
        - longitude
        - query
        - count
    UbereatsStoreCard:
      properties:
        '@type':
          type: string
          default: UbereatsStoreCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        eta:
          anyOf:
            - type: string
            - type: 'null'
        is_orderable:
          anyOf:
            - type: boolean
            - type: 'null'
        offer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    UbereatsSort:
      type: string
      enum:
        - recommended
        - rating
        - delivery_time
    UbereatsMinRating:
      type: string
      enum:
        - '3'
        - '3.5'
        - '4'
        - '4.5'
        - '5'
    UbereatsPrice:
      type: string
      enum:
        - $
        - $$
        - $$$
        - $$$$
    UbereatsDeliveryFee:
      type: string
      enum:
        - $1
        - $3
        - $5
        - $5+
    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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````