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

# /pcpartpicker/products

> Fetch one PCPartPicker component by its product code and return the full spec sheet together with the live merchant price table — every seller with its base price, promo, shipping, tax, stock state, the total and the outbound buy link — plus the manufacturer, part numbers, product images and the community star rating with its number of ratings.

**Price:** 5 credits

**⚠️ Common errors:** 412: No product with that code, or the page came back without a product breadcrumb



## OpenAPI

````yaml /openapi/price-comparison.json post /api/pcpartpicker/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/pcpartpicker/products:
    post:
      tags:
        - /pcpartpicker
      summary: /pcpartpicker/products
      description: >-
        Fetch one PCPartPicker component by its product code and return the full
        spec sheet together with the live merchant price table — every seller
        with its base price, promo, shipping, tax, stock state, the total and
        the outbound buy link — plus the manufacturer, part numbers, product
        images and the community star rating with its number of ratings.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No product with that code, or the page came
        back without a product breadcrumb
      operationId: __api_pcpartpicker_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PcpartpickerProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PcpartpickerProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PcpartpickerProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        region:
          $ref: '#/components/schemas/PcpartpickerRegion'
          default: us
      type: object
      required:
        - product
    PcpartpickerProduct:
      properties:
        '@type':
          type: string
          default: PcpartpickerProduct
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_slug:
          anyOf:
            - type: string
            - type: 'null'
        manufacturer:
          anyOf:
            - type: string
            - type: 'null'
        part_numbers:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        lowest_price:
          anyOf:
            - type: number
            - type: 'null'
        specs:
          items:
            $ref: '#/components/schemas/PcpartpickerProductSpec'
          type: array
          default: []
        offers:
          items:
            $ref: '#/components/schemas/PcpartpickerOffer'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PcpartpickerRegion:
      type: string
      enum:
        - au
        - at
        - be
        - ca
        - cz
        - dk
        - fi
        - fr
        - de
        - hu
        - ie
        - it
        - nl
        - nz
        - 'no'
        - pl
        - pt
        - ro
        - sa
        - sk
        - es
        - se
        - uk
        - us
    PcpartpickerProductSpec:
      properties:
        '@type':
          type: string
          default: PcpartpickerProductSpec
        name:
          type: string
        values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
    PcpartpickerOffer:
      properties:
        '@type':
          type: string
          default: PcpartpickerOffer
        merchant:
          type: string
        merchant_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        base_price:
          anyOf:
            - type: number
            - type: 'null'
        promo:
          anyOf:
            - type: string
            - type: 'null'
        shipping:
          anyOf:
            - type: string
            - type: 'null'
        tax:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        note:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - merchant
    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

````