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

> Search Yodobashi Camera (ヨドバシカメラ) products by keyword, category, maker, price range, release date range and spec facets. Returns product cards with SKU, name, brand, image, price, Gold Point reward, stock and delivery status, rating, review count and the number of stores holding the item.

**Price:** 1 credit

**⚠️ Common errors:** 422: No search scope given (keyword, category or maker), or a malformed category/maker id



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/yodobashi/products/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/yodobashi/products/search:
    post:
      tags:
        - /yodobashi
      summary: /yodobashi/products/search
      description: >-
        Search Yodobashi Camera (ヨドバシカメラ) products by keyword, category, maker,
        price range, release date range and spec facets. Returns product cards
        with SKU, name, brand, image, price, Gold Point reward, stock and
        delivery status, rating, review count and the number of stores holding
        the item.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: No search scope given (keyword, category or
        maker), or a malformed category/maker id
      operationId: __api_yodobashi_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YodobashiProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YodobashiProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YodobashiProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          maximum: 4320
          minimum: 1
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        release_year_from:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1900
            - type: 'null'
        release_month_from:
          anyOf:
            - type: integer
              maximum: 12
              minimum: 1
            - type: 'null'
        release_year_to:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1900
            - type: 'null'
        release_month_to:
          anyOf:
            - type: integer
              maximum: 12
              minimum: 1
            - type: 'null'
        spec_codes:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        include_discontinued:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/YodobashiSort'
          default: relevance
      type: object
      required:
        - count
    YodobashiProductCard:
      properties:
        '@type':
          type: string
          default: YodobashiProductCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        point:
          anyOf:
            - type: integer
            - type: 'null'
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        maker_id:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        store_stock_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YodobashiSort:
      type: string
      enum:
        - relevance
        - newest_listed
        - price_asc
        - price_desc
        - release_date_desc
    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

````