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

> Get full DoorDash (doordash.com) store/restaurant details by store id (or store URL): name, description, price range, rating and review count, address, phone, website, cuisines, delivery fee, ETA, opening hours, the complete menu with categories, items, prices, dietary tags and item ratings, plus a review summary (star breakdown) and recent customer reviews.

**Price:** 5 credits

**💡 AI Hint:** Fetch a single DoorDash (doordash.com) store by id (e.g. '19906') or a full store URL. Returns id, name, description, price_range (1-4), rating, rating_count, address (street/city/state/lat/lng), phone, website, cuisines, offers_delivery/pickup, is_dashpass_partner, delivery_fee_text, delivery_minutes, asap_minutes, hours, the full menu as categories each with items (name, description, price, strikethrough_price, image, like_percent, rating_count, dietary_tags, badges), review_summary (average_rating, stars_breakdown) and recent reviews (reviewer, rating, text, created_at, items).

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



## OpenAPI

````yaml /openapi-filtered.json post /api/doordash/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/doordash/stores:
    post:
      tags:
        - /doordash
      summary: /doordash/stores
      description: >-
        Get full DoorDash (doordash.com) store/restaurant details by store id
        (or store URL): name, description, price range, rating and review count,
        address, phone, website, cuisines, delivery fee, ETA, opening hours, the
        complete menu with categories, items, prices, dietary tags and item
        ratings, plus a review summary (star breakdown) and recent customer
        reviews.


        **Price:** 5 credits


        **💡 AI Hint:** Fetch a single DoorDash (doordash.com) store by id (e.g.
        '19906') or a full store URL. Returns id, name, description, price_range
        (1-4), rating, rating_count, address (street/city/state/lat/lng), phone,
        website, cuisines, offers_delivery/pickup, is_dashpass_partner,
        delivery_fee_text, delivery_minutes, asap_minutes, hours, the full menu
        as categories each with items (name, description, price,
        strikethrough_price, image, like_percent, rating_count, dietary_tags,
        badges), review_summary (average_rating, stars_breakdown) and recent
        reviews (reviewer, rating, text, created_at, items).


        **⚠️ Common errors:** 412: Store not found (well-formed id but no such
        store on DoorDash)
      operationId: __api_doordash_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DoordashStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DoordashStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DoordashStoresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        store:
          type: string
          minLength: 1
          description: DoorDash store id or a full store URL
          examples:
            - '19906'
            - https://www.doordash.com/store/katzs-delicatessen-new-york-19906/
      type: object
      required:
        - store
    DoordashStore:
      properties:
        '@type':
          type: string
          default: DoordashStore
        id:
          type: string
        name:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        price_range:
          anyOf:
            - type: integer
            - type: 'null'
        price_range_display:
          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'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
        store_bio:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        business_id:
          anyOf:
            - type: string
            - type: 'null'
        business_name:
          anyOf:
            - type: string
            - type: 'null'
        cuisines:
          items:
            type: string
          type: array
          default: []
        is_open:
          anyOf:
            - type: boolean
            - type: 'null'
        offers_delivery:
          type: boolean
          default: false
        offers_pickup:
          type: boolean
          default: false
        is_dashpass_partner:
          type: boolean
          default: false
        delivery_fee_text:
          anyOf:
            - type: string
            - type: 'null'
        delivery_minutes:
          anyOf:
            - type: string
            - type: 'null'
        pickup_minutes:
          anyOf:
            - type: string
            - type: 'null'
        asap_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        photo_count_text:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/DoordashAddress'
            - type: 'null'
        hours:
          items:
            $ref: '#/components/schemas/DoordashHours'
          type: array
          default: []
        category_count:
          type: integer
          default: 0
        item_count:
          type: integer
          default: 0
        categories:
          items:
            $ref: '#/components/schemas/DoordashMenuCategory'
          type: array
          default: []
        review_summary:
          anyOf:
            - $ref: '#/components/schemas/DoordashReviewSummary'
            - type: 'null'
        reviews:
          items:
            $ref: '#/components/schemas/DoordashReview'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    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
    DoordashHours:
      properties:
        '@type':
          type: string
          default: DoordashHours
        day:
          type: string
        slots:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - day
    DoordashMenuCategory:
      properties:
        '@type':
          type: string
          default: DoordashMenuCategory
        id:
          type: string
        name:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        items:
          items:
            $ref: '#/components/schemas/DoordashMenuItem'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    DoordashReviewSummary:
      properties:
        '@type':
          type: string
          default: DoordashReviewSummary
        average_rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        stars_breakdown:
          items:
            $ref: '#/components/schemas/DoordashStarBucket'
          type: array
          default: []
      type: object
    DoordashReview:
      properties:
        '@type':
          type: string
          default: DoordashReview
        id:
          type: string
        reviewer:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          type: boolean
          default: false
        source:
          anyOf:
            - type: string
            - type: 'null'
        items:
          items:
            type: string
          type: array
          default: []
      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
    DoordashMenuItem:
      properties:
        '@type':
          type: string
          default: DoordashMenuItem
        id:
          type: string
        name:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        strikethrough_price:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating_display:
          anyOf:
            - type: string
            - type: 'null'
        like_percent:
          anyOf:
            - type: integer
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        serving_size:
          anyOf:
            - type: string
            - type: 'null'
        dietary_tags:
          items:
            type: string
          type: array
          default: []
        badges:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - name
    DoordashStarBucket:
      properties:
        '@type':
          type: string
          default: DoordashStarBucket
        stars:
          type: integer
        rating_count:
          type: integer
          default: 0
      type: object
      required:
        - stars
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````