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

# /biccamera/products/search

> Search Bic Camera (ビックカメラ) products by keyword and/or category, narrowed by maker, price range, colour, release month, stock, discount, pre-order, second-hand availability, trade-in payout, free warranty, subscription, made-in-Japan and new-arrival flags, shelf-specific specification filters, with seven orderings. Returns product cards with id, name, maker, image, price, BicPoint reward, delivery and stock messages, rating, review count, second-hand offers and colour variations.

**Price:** 1 credit

**⚠️ Common errors:** 422: Neither keyword nor category_id was given, or a malformed category_id, release_month or spec_filters key



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/biccamera/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/biccamera/products/search:
    post:
      tags:
        - /biccamera
      summary: /biccamera/products/search
      description: >-
        Search Bic Camera (ビックカメラ) products by keyword and/or category, narrowed
        by maker, price range, colour, release month, stock, discount,
        pre-order, second-hand availability, trade-in payout, free warranty,
        subscription, made-in-Japan and new-arrival flags, shelf-specific
        specification filters, with seven orderings. Returns product cards with
        id, name, maker, image, price, BicPoint reward, delivery and stock
        messages, rating, review count, second-hand offers and colour
        variations.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: Neither keyword nor category_id was given, or
        a malformed category_id, release_month or spec_filters key
      operationId: __api_biccamera_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/BiccameraProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BiccameraProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BiccameraProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 1500
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          maximum: 10000
          minimum: 1
        brand:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        color:
          anyOf:
            - items:
                $ref: '#/components/schemas/BiccameraColor'
              type: array
            - type: 'null'
        release_month:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        trade_in_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        trade_in_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        in_stock_only:
          type: boolean
          default: false
        include_discontinued:
          type: boolean
          default: false
        discounted_only:
          type: boolean
          default: false
        preorder_only:
          type: boolean
          default: false
        has_used:
          type: boolean
          default: false
        has_trade_in:
          type: boolean
          default: false
        free_warranty:
          type: boolean
          default: false
        subscription:
          type: boolean
          default: false
        made_in_japan:
          type: boolean
          default: false
        new_arrivals:
          type: boolean
          default: false
        split_variations:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/BiccameraSort'
          default: popular
        spec_filters:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
      type: object
      required:
        - count
    BiccameraProductCard:
      properties:
        '@type':
          type: string
          default: BiccameraProductCard
        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'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        shipping_message:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        used_count:
          anyOf:
            - type: integer
            - type: 'null'
        used_price_from:
          anyOf:
            - type: number
            - type: 'null'
        spec_labels:
          items:
            type: string
          type: array
          default: []
        badges:
          items:
            type: string
          type: array
          default: []
        coupon:
          anyOf:
            - type: string
            - type: 'null'
        color_variations:
          items:
            $ref: '#/components/schemas/BiccameraColorVariation'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BiccameraColor:
      type: string
      enum:
        - black
        - white
        - gray
        - silver
        - blue
        - green
        - beige
        - yellow
        - gold
        - orange
        - brown
        - red
        - pink
        - purple
        - clear
        - other
    BiccameraSort:
      type: string
      enum:
        - popular
        - newest
        - price_asc
        - price_desc
        - release_date
        - delivery_speed
        - review_count
        - rating
    BiccameraColorVariation:
      properties:
        '@type':
          type: string
          default: BiccameraColorVariation
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        is_current:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
    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

````