> ## 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.

# /doordash/stores/search

> Find DoorDash (doordash.com) restaurants and stores delivering in a US city, optionally filtered by cuisine. Returns store cards with name, rating, review count, price range, cuisines, address, delivery ETA, distance, delivery fee, current offers, popular items and recent review snippets.

**Price:** 5 credits

**💡 AI Hint:** Find DoorDash (doordash.com) restaurants in a US city. Provide city, state (two-letter code) and count. Optional cuisine filter (American, Italian, Chinese, Pizza, Sushi, Mexican, ...). Each result has id, name, url, image, rating, rating_count, price_range (1-4), cuisines, address, eta (minutes), distance, delivery_fee, offers (promotions), popular_items (name, price, image) and recent review snippets. Use a store id or url with the stores endpoint for the full menu and reviews.



## OpenAPI

````yaml /openapi-filtered.json post /api/doordash/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/doordash/stores/search:
    post:
      tags:
        - /doordash
      summary: /doordash/stores/search
      description: >-
        Find DoorDash (doordash.com) restaurants and stores delivering in a US
        city, optionally filtered by cuisine. Returns store cards with name,
        rating, review count, price range, cuisines, address, delivery ETA,
        distance, delivery fee, current offers, popular items and recent review
        snippets.


        **Price:** 5 credits


        **💡 AI Hint:** Find DoorDash (doordash.com) restaurants in a US city.
        Provide city, state (two-letter code) and count. Optional cuisine filter
        (American, Italian, Chinese, Pizza, Sushi, Mexican, ...). Each result
        has id, name, url, image, rating, rating_count, price_range (1-4),
        cuisines, address, eta (minutes), distance, delivery_fee, offers
        (promotions), popular_items (name, price, image) and recent review
        snippets. Use a store id or url with the stores endpoint for the full
        menu and reviews.
      operationId: __api_doordash_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/DoordashStoresSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DoordashStoreCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DoordashStoresSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        city:
          type: string
          minLength: 1
          description: City name
          examples:
            - New York
            - Los Angeles
        state:
          type: string
          maxLength: 2
          minLength: 2
          description: Two-letter US state code
          examples:
            - NY
            - CA
        count:
          type: integer
          maximum: 50
          minimum: 1
          description: Max number of stores to return
        cuisine:
          anyOf:
            - $ref: '#/components/schemas/DoordashCuisine'
            - type: 'null'
          description: Filter by cuisine
      type: object
      required:
        - city
        - state
        - count
    DoordashStoreCard:
      properties:
        '@type':
          type: string
          default: DoordashStoreCard
        id:
          type: string
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_count_display:
          anyOf:
            - type: string
            - type: 'null'
        price_range:
          anyOf:
            - type: integer
            - type: 'null'
        cuisines:
          items:
            type: string
          type: array
          default: []
        address:
          anyOf:
            - $ref: '#/components/schemas/DoordashAddress'
            - type: 'null'
        eta:
          anyOf:
            - type: integer
            - type: 'null'
        distance:
          anyOf:
            - type: string
            - type: 'null'
        delivery_fee:
          anyOf:
            - type: number
            - type: 'null'
        service_fee:
          anyOf:
            - type: number
            - type: 'null'
        delivery_fee_text:
          anyOf:
            - type: string
            - type: 'null'
        offers_pickup:
          type: boolean
          default: false
        offers:
          items:
            type: string
          type: array
          default: []
        popular_items:
          items:
            $ref: '#/components/schemas/DoordashCardItem'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/DoordashCardReview'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DoordashCuisine:
      type: string
      enum:
        - African
        - American
        - Arabic
        - Argentinian
        - Asian
        - Australian
        - Bakery
        - BBQ
        - Boba
        - Brazilian
        - Breakfast
        - Brunch
        - Bubble-Tea
        - Burgers
        - Cafe
        - Caribbean
        - Cheesesteak
        - Chicken
        - Chinese
        - Coffee
        - Colombian
        - Comfort-Food
        - Crab
        - Cuban
        - Deli
        - Dessert
        - Dim-Sum
        - Ethiopian
        - FastFood
        - Filipino
        - French
        - Greek
        - Gyro
        - Halal
        - Hawaiian
        - Healthy
        - Indian
        - Italian
        - Japanese
        - Korean
        - Latin-American
        - Malaysian
        - Mediterranean
        - Mexican
        - Middle-Eastern
        - Noodles
        - Pakistani
        - Peruvian
        - Pho
        - Pizza
        - Poke
        - Ramen
        - Salads
        - Sandwiches
        - Seafood
        - Smoothie
        - Soul-Food
        - Soup
        - Southern
        - Spanish
        - Steak
        - Sushi
        - Tacos
        - Tapas
        - Thai
        - Vegan
        - Vegetarian
        - Vietnamese
        - Wings
        - Wraps
    DoordashAddress:
      properties:
        '@type':
          type: string
          default: DoordashAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        display_address:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    DoordashCardItem:
      properties:
        '@type':
          type: string
          default: DoordashCardItem
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        calories:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    DoordashCardReview:
      properties:
        '@type':
          type: string
          default: DoordashCardReview
        text:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        source:
          anyOf:
            - type: string
            - type: 'null'
        reviewer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````