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

> Fetch one PCPartPicker editorial build guide: the written sections explaining each component choice, the recommended part list with today's per-merchant prices and the guide total, the estimated system wattage, and the reader discussion underneath.

**Price:** 10 credits

**⚠️ Common errors:** 412: No guide with that code



## OpenAPI

````yaml /openapi/price-comparison.json post /api/pcpartpicker/guides
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/guides:
    post:
      tags:
        - /pcpartpicker
      summary: /pcpartpicker/guides
      description: >-
        Fetch one PCPartPicker editorial build guide: the written sections
        explaining each component choice, the recommended part list with today's
        per-merchant prices and the guide total, the estimated system wattage,
        and the reader discussion underneath.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: No guide with that code
      operationId: __api_pcpartpicker_guides_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PcpartpickerGuidesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PcpartpickerGuide'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PcpartpickerGuidesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        guide:
          type: string
          minLength: 1
        region:
          $ref: '#/components/schemas/PcpartpickerRegion'
          default: us
      type: object
      required:
        - guide
    PcpartpickerGuide:
      properties:
        '@type':
          type: string
          default: PcpartpickerGuide
        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'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        sections:
          items:
            $ref: '#/components/schemas/PcpartpickerGuideSection'
          type: array
          default: []
        parts:
          items:
            $ref: '#/components/schemas/PcpartpickerPart'
          type: array
          default: []
        comments:
          items:
            $ref: '#/components/schemas/PcpartpickerComment'
          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
    PcpartpickerGuideSection:
      properties:
        '@type':
          type: string
          default: PcpartpickerGuideSection
        heading:
          type: string
        text:
          type: string
      type: object
      required:
        - heading
        - 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
    PcpartpickerComment:
      properties:
        '@type':
          type: string
          default: PcpartpickerComment
        id:
          type: string
        author:
          anyOf:
            - type: string
            - type: 'null'
        author_url:
          anyOf:
            - type: string
            - type: 'null'
        author_avatar:
          anyOf:
            - type: string
            - type: 'null'
        posted_ago:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        permalink:
          anyOf:
            - type: string
            - type: 'null'
        depth:
          type: integer
          default: 0
        parent_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    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

````