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

# /demaecan/shops/search

> Search Demae-can (出前館) shops deliverable to a given area (block code), optionally filtered by keyword, cuisine genre, sort order, max delivery time and accepted payment methods. Returns shop cards with name, rating, review count, delivery fee, delivery time, status, tags and top menu items.

**Price:** 5 credits per 80 results

**💡 AI Hint:** Search Demae-can (demae-can.com) shops that deliver to an area block code (resolve a postal code to a block code via demaecan/areas/search first). Optional filters: keyword (free text), genre (cuisine), sort (recommend/wait_time/rating), max_wait_time (30/60/90 minutes), payment_methods. Returns id, name, catchphrase, image, rating, review_count, delivery_fee, wait_time, status, has_coupon, tags and top items.



## OpenAPI

````yaml /openapi-filtered.json post /api/demaecan/shops/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/demaecan/shops/search:
    post:
      tags:
        - /demaecan
      summary: /demaecan/shops/search
      description: >-
        Search Demae-can (出前館) shops deliverable to a given area (block code),
        optionally filtered by keyword, cuisine genre, sort order, max delivery
        time and accepted payment methods. Returns shop cards with name, rating,
        review count, delivery fee, delivery time, status, tags and top menu
        items.


        **Price:** 5 credits per 80 results


        **💡 AI Hint:** Search Demae-can (demae-can.com) shops that deliver to
        an area block code (resolve a postal code to a block code via
        demaecan/areas/search first). Optional filters: keyword (free text),
        genre (cuisine), sort (recommend/wait_time/rating), max_wait_time
        (30/60/90 minutes), payment_methods. Returns id, name, catchphrase,
        image, rating, review_count, delivery_fee, wait_time, status,
        has_coupon, tags and top items.
      operationId: __api_demaecan_shops_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DemaecanShopsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DemaecanShopCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DemaecanShopsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        area:
          type: string
          minLength: 1
          description: Delivery area block code (from areas/search by postal code)
          examples:
            - '13113012001'
        count:
          type: integer
          minimum: 1
          description: Max number of shops to return
        keyword:
          anyOf:
            - type: string
            - type: 'null'
          description: Free-text keyword to search shops/dishes
        genre:
          anyOf:
            - $ref: '#/components/schemas/DemaecanGenre'
            - type: 'null'
          description: Filter by cuisine genre
        sort:
          anyOf:
            - $ref: '#/components/schemas/DemaecanSearchSort'
            - type: 'null'
          description: Result ordering
        max_wait_time:
          anyOf:
            - $ref: '#/components/schemas/DemaecanWaitTime'
            - type: 'null'
          description: Only shops deliverable within this many minutes
        payment_methods:
          items:
            $ref: '#/components/schemas/DemaecanPaymentMethod'
          type: array
          description: Only shops accepting all of these payment methods
          default: []
      type: object
      required:
        - area
        - count
    DemaecanShopCard:
      properties:
        '@type':
          type: string
          default: DemaecanShopCard
        id:
          type: string
        name:
          type: string
        catchphrase:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        delivery_fee:
          anyOf:
            - type: number
            - type: 'null'
        wait_time:
          anyOf:
            - type: integer
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        status_text:
          anyOf:
            - type: string
            - type: 'null'
        chain_id:
          anyOf:
            - type: string
            - type: 'null'
        shop_type:
          anyOf:
            - type: string
            - type: 'null'
        is_share_deli:
          type: boolean
          default: false
        is_instore_price:
          type: boolean
          default: false
        is_half_price_sale:
          type: boolean
          default: false
        is_ultra_half_price_fes:
          type: boolean
          default: false
        is_delivery_meiten:
          type: boolean
          default: false
        has_de_award:
          type: boolean
          default: false
        has_coupon:
          type: boolean
          default: false
        has_free_delivery_coupon:
          type: boolean
          default: false
        tags:
          items:
            type: string
          type: array
          default: []
        items:
          items:
            $ref: '#/components/schemas/DemaecanShopCardItem'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DemaecanGenre:
      type: string
      enum:
        - pizza
        - fast_food
        - sushi_seafood
        - chinese
        - ramen
        - bento
        - curry_rice
        - donburi
        - western
        - sweets
        - burger_sandwich
        - family_restaurant
        - fried_chicken
        - indian_curry
        - japanese
        - hamburg_steak
        - soba_udon
        - tonkatsu_tempura
        - cafe_drink
        - korean
        - takoyaki_okonomiyaki
        - pasta_italian
        - yakiniku
        - healthy
        - ethnic
        - convenience_store
        - alcohol
        - party_catering
        - in_store_price
    DemaecanSearchSort:
      type: string
      enum:
        - recommend
        - wait_time
        - rating
    DemaecanWaitTime:
      type: string
      enum:
        - '30'
        - '60'
        - '90'
    DemaecanPaymentMethod:
      type: string
      enum:
        - credit_card
        - amazon_pay
        - paypay
        - docomo_carrier_pay
        - carrier_pay
        - madonna_pay
        - cash
    DemaecanShopCardItem:
      properties:
        '@type':
          type: string
          default: DemaecanShopCardItem
        item_code:
          type: string
        name:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        item_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - item_code
        - name
    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

````