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

# /pckoubou/products/search

> Search PC Koubou (パソコン工房) products by keyword and/or category across new and second-hand stock, narrowed by maker, holding branch, merchandising labels, campaign tags, the category-specific specification filters, a price range and the sale-start period, with six orderings. Returns product cards with the product id, name, maker with the maker's own product page, model number, JAN code, tax-included and tax-excluded price, reward-point rate, category trail, photos, the specification table, stock flag, holding branch, labels and the average customer rating.

**Price:** 1 credit

**⚠️ Common errors:** 422: A specs entry was not a facet filter token



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/pckoubou/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/pckoubou/products/search:
    post:
      tags:
        - /pckoubou
      summary: /pckoubou/products/search
      description: >-
        Search PC Koubou (パソコン工房) products by keyword and/or category across new
        and second-hand stock, narrowed by maker, holding branch, merchandising
        labels, campaign tags, the category-specific specification filters, a
        price range and the sale-start period, with six orderings. Returns
        product cards with the product id, name, maker with the maker's own
        product page, model number, JAN code, tax-included and tax-excluded
        price, reward-point rate, category trail, photos, the specification
        table, stock flag, holding branch, labels and the average customer
        rating.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: A specs entry was not a facet filter token
      operationId: __api_pckoubou_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/PckoubouProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PckoubouProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PckoubouProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        item_type:
          $ref: '#/components/schemas/PckoubouItemType'
          default: all
        maker:
          anyOf:
            - type: string
            - type: 'null'
        store:
          anyOf:
            - type: string
            - type: 'null'
        labels:
          anyOf:
            - type: string
            - type: 'null'
        campaign_tags:
          anyOf:
            - type: string
            - type: 'null'
        release_period:
          anyOf:
            - $ref: '#/components/schemas/PckoubouReleasePeriod'
            - type: 'null'
        specs:
          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'
        sort:
          $ref: '#/components/schemas/PckoubouSort'
          default: recommended
      type: object
      required:
        - count
    PckoubouProductCard:
      properties:
        '@type':
          type: string
          default: PckoubouProductCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        maker_id:
          anyOf:
            - type: string
            - type: 'null'
        maker_url:
          anyOf:
            - type: string
            - type: 'null'
        model_number:
          anyOf:
            - type: string
            - type: 'null'
        jan:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_without_tax:
          anyOf:
            - type: number
            - type: 'null'
        original_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        is_discounted:
          type: boolean
          default: false
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        promotion_notes:
          items:
            type: string
          type: array
          default: []
        department:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_path:
          anyOf:
            - type: string
            - type: 'null'
        category_paths:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        is_used:
          type: boolean
          default: false
        in_stock:
          type: boolean
          default: false
        store:
          anyOf:
            - type: string
            - type: 'null'
        labels:
          items:
            type: string
          type: array
          default: []
        campaign_tags:
          items:
            type: string
          type: array
          default: []
        shipping_labels:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        purchase_limit:
          anyOf:
            - type: integer
            - type: 'null'
        listed_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PckoubouItemType:
      type: string
      enum:
        - all
        - new
        - used
    PckoubouReleasePeriod:
      type: string
      enum:
        - today
        - this_week
        - this_month
        - this_year
        - upcoming
        - since_2000
        - before_2000
    PckoubouSort:
      type: string
      enum:
        - recommended
        - bestseller
        - most_viewed
        - newest
        - price_asc
        - price_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

````