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

> Get full Demae-can (出前館) shop details by shop id (or shop URL): name, image, rating, review count and rating breakdown, delivery fee, minimum order, business hours, address, genre, chain, coupons and the complete menu with categories, items, prices, descriptions and images.

**Price:** 5 credits

**💡 AI Hint:** Fetch a single Demae-can (demae-can.com) shop by id (e.g. '1003691') or a full shop URL. Returns id, name, image, chain_image, rating, review_count, rating_breakdown (per-star count/percentage), status, is_available, minimum_order_price, delivery_fee, can_use_point, wait_time, business_time, address, genre_name/code, chain_name/id, coupons and the full menu as categories, each with items (item_code, name, price, description, image, appeal_label, is_stockout, is_for_sale, labels). Pass area (block code) for area-specific delivery fee.

**⚠️ Common errors:** 412: Shop not found (well-formed id but the shop does not exist)



## OpenAPI

````yaml /openapi-filtered.json post /api/demaecan/shops
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:
    post:
      tags:
        - /demaecan
      summary: /demaecan/shops
      description: >-
        Get full Demae-can (出前館) shop details by shop id (or shop URL): name,
        image, rating, review count and rating breakdown, delivery fee, minimum
        order, business hours, address, genre, chain, coupons and the complete
        menu with categories, items, prices, descriptions and images.


        **Price:** 5 credits


        **💡 AI Hint:** Fetch a single Demae-can (demae-can.com) shop by id
        (e.g. '1003691') or a full shop URL. Returns id, name, image,
        chain_image, rating, review_count, rating_breakdown (per-star
        count/percentage), status, is_available, minimum_order_price,
        delivery_fee, can_use_point, wait_time, business_time, address,
        genre_name/code, chain_name/id, coupons and the full menu as categories,
        each with items (item_code, name, price, description, image,
        appeal_label, is_stockout, is_for_sale, labels). Pass area (block code)
        for area-specific delivery fee.


        **⚠️ Common errors:** 412: Shop not found (well-formed id but the shop
        does not exist)
      operationId: __api_demaecan_shops_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DemaecanShopsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DemaecanShop'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DemaecanShopsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        shop:
          type: string
          minLength: 1
          description: Demae-can shop id or a full shop URL
          examples:
            - '1003691'
            - https://demae-can.com/shop/menu/1003691
        area:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Optional delivery area block code (from areas/search) to resolve
            area-specific delivery fee
          examples:
            - '13113012001'
      type: object
      required:
        - shop
    DemaecanShop:
      properties:
        '@type':
          type: string
          default: DemaecanShop
        id:
          type: string
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        chain_image:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        status_text:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          type: boolean
          default: false
        minimum_order_price:
          anyOf:
            - type: number
            - type: 'null'
        minimum_order_price_text:
          anyOf:
            - type: string
            - type: 'null'
        delivery_fee:
          anyOf:
            - type: number
            - type: 'null'
        can_use_point:
          type: boolean
          default: false
        is_share_deli:
          type: boolean
          default: false
        wait_time:
          anyOf:
            - type: integer
            - type: 'null'
        business_time:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        genre_code:
          anyOf:
            - type: string
            - type: 'null'
        genre_name:
          anyOf:
            - type: string
            - type: 'null'
        chain_id:
          anyOf:
            - type: string
            - type: 'null'
        chain_name:
          anyOf:
            - type: string
            - type: 'null'
        is_instore_price:
          type: boolean
          default: false
        instore_price_shop_type:
          anyOf:
            - type: string
            - type: 'null'
        is_delivery_meiten:
          type: boolean
          default: false
        has_coupon:
          type: boolean
          default: false
        available_coupon_count:
          type: integer
          default: 0
        coupons:
          items:
            $ref: '#/components/schemas/DemaecanCoupon'
          type: array
          default: []
        rating_breakdown:
          items:
            $ref: '#/components/schemas/DemaecanRatingBucket'
          type: array
          default: []
        category_count:
          type: integer
          default: 0
        item_count:
          type: integer
          default: 0
        categories:
          items:
            $ref: '#/components/schemas/DemaecanMenuCategory'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DemaecanCoupon:
      properties:
        '@type':
          type: string
          default: DemaecanCoupon
        coupon_code:
          anyOf:
            - type: string
            - type: 'null'
        master_coupon_id:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        discount_text:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        merchant_type:
          anyOf:
            - type: string
            - type: 'null'
        minimum_order_price_condition_text:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
      type: object
    DemaecanRatingBucket:
      properties:
        '@type':
          type: string
          default: DemaecanRatingBucket
        star:
          type: integer
        count:
          type: integer
          default: 0
        percentage:
          type: integer
          default: 0
      type: object
      required:
        - star
    DemaecanMenuCategory:
      properties:
        '@type':
          type: string
          default: DemaecanMenuCategory
        menu_code:
          type: string
        name:
          type: string
        items:
          items:
            $ref: '#/components/schemas/DemaecanMenuItem'
          type: array
          default: []
      type: object
      required:
        - menu_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
    DemaecanMenuItem:
      properties:
        '@type':
          type: string
          default: DemaecanMenuItem
        item_code:
          type: string
        name:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        appeal_label:
          anyOf:
            - type: string
            - type: 'null'
        item_type:
          anyOf:
            - type: string
            - type: 'null'
        is_stockout:
          type: boolean
          default: false
        is_for_sale:
          type: boolean
          default: true
        has_multiple_size:
          type: boolean
          default: false
        is_combo:
          type: boolean
          default: false
        is_instore_price:
          type: boolean
          default: false
        labels:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - item_code
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````