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

> Fetch one saved PCPartPicker part list with today's full price breakdown: every component with the cheapest merchant, base price, promo, shipping, tax, stock state and final price, plus the list total, the estimated system wattage and any compatibility warnings PCPartPicker raises for the combination.

**Price:** 10 credits

**⚠️ Common errors:** 412: No part list with that code, or the list holds no components



## OpenAPI

````yaml /openapi/price-comparison.json post /api/pcpartpicker/lists
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/lists:
    post:
      tags:
        - /pcpartpicker
      summary: /pcpartpicker/lists
      description: >-
        Fetch one saved PCPartPicker part list with today's full price
        breakdown: every component with the cheapest merchant, base price,
        promo, shipping, tax, stock state and final price, plus the list total,
        the estimated system wattage and any compatibility warnings PCPartPicker
        raises for the combination.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: No part list with that code, or the list
        holds no components
      operationId: __api_pcpartpicker_lists_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PcpartpickerListsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PcpartpickerPartList'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PcpartpickerListsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        part_list:
          type: string
          minLength: 1
        region:
          $ref: '#/components/schemas/PcpartpickerRegion'
          default: us
      type: object
      required:
        - part_list
    PcpartpickerPartList:
      properties:
        '@type':
          type: string
          default: PcpartpickerPartList
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        estimated_wattage:
          anyOf:
            - type: integer
            - type: 'null'
        compatibility:
          anyOf:
            - type: string
            - type: 'null'
        notes:
          items:
            $ref: '#/components/schemas/PcpartpickerCompatibilityNote'
          type: array
          default: []
        parts:
          items:
            $ref: '#/components/schemas/PcpartpickerPart'
          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
    PcpartpickerCompatibilityNote:
      properties:
        '@type':
          type: string
          default: PcpartpickerCompatibilityNote
        severity:
          type: string
        text:
          type: string
      type: object
      required:
        - severity
        - text
    PcpartpickerPart:
      properties:
        '@type':
          type: string
          default: PcpartpickerPart
        component:
          anyOf:
            - type: string
            - type: 'null'
        product_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          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'
        price:
          anyOf:
            - type: number
            - type: 'null'
        merchant:
          anyOf:
            - type: string
            - type: 'null'
        merchant_url:
          anyOf:
            - type: string
            - type: 'null'
      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

````