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

> Get full PC Koubou (パソコン工房) product details by product id or product URL: name, catch copy and marketing copy, maker with the maker's own product page, model number, JAN code, tax-included and tax-excluded price, reward points, shipping fee, dispatch promise and dispatch source, category trail, photos, the specification table, stock flag, merchandising labels, the average rating with the review count, and for second-hand stock the condition note, bundled accessories, warranty and the branch that holds it with its address and phone.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed product id but no such product on pc-koubou.jp)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/pckoubou/products
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:
    post:
      tags:
        - /pckoubou
      summary: /pckoubou/products
      description: >-
        Get full PC Koubou (パソコン工房) product details by product id or product
        URL: name, catch copy and marketing copy, maker with the maker's own
        product page, model number, JAN code, tax-included and tax-excluded
        price, reward points, shipping fee, dispatch promise and dispatch
        source, category trail, photos, the specification table, stock flag,
        merchandising labels, the average rating with the review count, and for
        second-hand stock the condition note, bundled accessories, warranty and
        the branch that holds it with its address and phone.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed product id but
        no such product on pc-koubou.jp)
      operationId: __api_pckoubou_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PckoubouProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PckoubouProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PckoubouProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
      type: object
      required:
        - product
    PckoubouProduct:
      properties:
        '@type':
          type: string
          default: PckoubouProduct
        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'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        details:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        release_date_text:
          anyOf:
            - type: string
            - type: 'null'
        points:
          anyOf:
            - type: integer
            - type: 'null'
        shipping_fee_text:
          anyOf:
            - type: string
            - type: 'null'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        fulfilled_by:
          anyOf:
            - type: string
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        condition_note:
          anyOf:
            - type: string
            - type: 'null'
        accessories:
          anyOf:
            - type: string
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        store_address:
          anyOf:
            - type: string
            - type: 'null'
        store_phone:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        purchase_note:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    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

````