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

# /yodobashi/products/stock

> Physical store availability of a Yodobashi Camera (ヨドバシカメラ) product: per-store stock flag and message, in-store price and Gold Point reward, pickup readiness, address, postal code, coordinates, prefecture, shopping area, phone number and the next seven days of opening hours.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/yodobashi/products/stock
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/yodobashi/products/stock:
    post:
      tags:
        - /yodobashi
      summary: /yodobashi/products/stock
      description: >-
        Physical store availability of a Yodobashi Camera (ヨドバシカメラ) product:
        per-store stock flag and message, in-store price and Gold Point reward,
        pickup readiness, address, postal code, coordinates, prefecture,
        shopping area, phone number and the next seven days of opening hours.


        **Price:** 1 credit
      operationId: __api_yodobashi_products_stock_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YodobashiProductsStockPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YodobashiStoreStock'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YodobashiProductsStockPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        prefecture:
          anyOf:
            - $ref: '#/components/schemas/YodobashiPrefecture'
            - type: 'null'
        sub_area:
          anyOf:
            - $ref: '#/components/schemas/YodobashiSubArea'
            - type: 'null'
        chain:
          anyOf:
            - $ref: '#/components/schemas/YodobashiStoreChain'
            - type: 'null'
        in_stock_only:
          type: boolean
          default: false
        on_display_only:
          type: boolean
          default: false
      type: object
      required:
        - product
        - count
    YodobashiStoreStock:
      properties:
        '@type':
          type: string
          default: YodobashiStoreStock
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        point:
          anyOf:
            - type: integer
            - type: 'null'
        is_in_stock:
          type: boolean
          default: false
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        is_on_display:
          type: boolean
          default: false
        pickup_message:
          anyOf:
            - type: string
            - type: 'null'
        is_pickup_all_day:
          type: boolean
          default: false
        address:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        prefecture:
          anyOf:
            - type: string
            - type: 'null'
        prefecture_id:
          anyOf:
            - type: string
            - type: 'null'
        sub_area:
          anyOf:
            - type: string
            - type: 'null'
        sub_area_id:
          anyOf:
            - type: string
            - type: 'null'
        lat:
          anyOf:
            - type: number
            - type: 'null'
        lng:
          anyOf:
            - type: number
            - type: 'null'
        brands:
          items:
            $ref: '#/components/schemas/YodobashiStoreBrand'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YodobashiPrefecture:
      type: string
      enum:
        - hokkaido
        - aomori
        - iwate
        - miyagi
        - akita
        - yamagata
        - fukushima
        - ibaraki
        - tochigi
        - gunma
        - saitama
        - chiba
        - tokyo
        - kanagawa
        - niigata
        - toyama
        - ishikawa
        - fukui
        - yamanashi
        - nagano
        - gifu
        - shizuoka
        - aichi
        - mie
        - shiga
        - kyoto
        - osaka
        - hyogo
        - nara
        - wakayama
        - tottori
        - shimane
        - okayama
        - hiroshima
        - yamaguchi
        - tokushima
        - kagawa
        - ehime
        - kochi
        - fukuoka
        - saga
        - nagasaki
        - kumamoto
        - oita
        - miyazaki
        - kagoshima
        - okinawa
    YodobashiSubArea:
      type: string
      enum:
        - shinjuku
        - tokyo_ginza_kanda
        - akihabara_ueno_kinshicho
        - kichijoji
        - tachikawa_machida_hachioji
        - ikebukuro
        - kawasaki
        - yokohama
        - kamiooka
    YodobashiStoreChain:
      type: string
      enum:
        - yodobashi_camera
        - ishii_sports
        - art_sports
        - yodobloom
    YodobashiStoreBrand:
      properties:
        '@type':
          type: string
          default: YodobashiStoreBrand
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        chain:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        store_type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        lat:
          anyOf:
            - type: number
            - type: 'null'
        lng:
          anyOf:
            - type: number
            - type: 'null'
        after_hours_pickup_message:
          anyOf:
            - type: string
            - type: 'null'
        business_hours_note:
          anyOf:
            - type: string
            - type: 'null'
        business_hours:
          items:
            $ref: '#/components/schemas/YodobashiStoreBusinessHours'
          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
    YodobashiStoreBusinessHours:
      properties:
        '@type':
          type: string
          default: YodobashiStoreBusinessHours
        date:
          type: string
        is_open:
          type: boolean
          default: false
        open_time:
          anyOf:
            - type: string
            - type: 'null'
        close_time:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - date
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````