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

# /ifixit/products

> Get one iFixit store product with every option, price, stock level and compatible device

**Price:** 5 credits

**⚠️ Common errors:** 412: No store product exists under that handle.



## OpenAPI

````yaml /openapi/repair-diy.json post /api/ifixit/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/ifixit/products:
    post:
      tags:
        - /ifixit
      summary: /ifixit/products
      description: >-
        Get one iFixit store product with every option, price, stock level and
        compatible device


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No store product exists under that handle.
      operationId: __api_ifixit_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IfixitProductPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IfixitProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IfixitProductPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    IfixitProduct:
      properties:
        '@type':
          type: string
          default: IfixitProduct
        id:
          type: string
        name:
          type: string
        alias:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        shopify_id:
          anyOf:
            - type: string
            - type: 'null'
        vendor:
          anyOf:
            - type: string
            - type: 'null'
        is_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        view_count_today:
          anyOf:
            - type: integer
            - type: 'null'
        view_count_week:
          anyOf:
            - type: integer
            - type: 'null'
        view_count_month:
          anyOf:
            - type: integer
            - type: 'null'
        prop65_chemicals:
          anyOf:
            - type: string
            - type: 'null'
        prop65_warning_type:
          anyOf:
            - type: string
            - type: 'null'
        has_more_compatible_devices:
          anyOf:
            - type: boolean
            - type: 'null'
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
        item_types:
          items:
            type: string
          type: array
          default: []
        tool_categories:
          items:
            type: string
          type: array
          default: []
        tags:
          items:
            type: string
          type: array
          default: []
        device_ancestors:
          items:
            type: string
          type: array
          default: []
        enabled_store_regions:
          items:
            type: string
          type: array
          default: []
        compatibility_notes:
          items:
            type: string
          type: array
          default: []
        fixbot_suggestions:
          items:
            type: string
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
        breadcrumbs:
          items:
            $ref: '#/components/schemas/IfixitBreadcrumb'
          type: array
          default: []
        options:
          items:
            $ref: '#/components/schemas/IfixitProductOption'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/IfixitProductVariant'
          type: array
          default: []
        compatible_devices:
          items:
            $ref: '#/components/schemas/IfixitCompatibleDevice'
          type: array
          default: []
        guides:
          items:
            $ref: '#/components/schemas/IfixitProductGuide'
          type: array
          default: []
        faqs:
          items:
            $ref: '#/components/schemas/IfixitProductFaq'
          type: array
          default: []
        featured_products:
          items:
            $ref: '#/components/schemas/IfixitProductPreview'
          type: array
          default: []
        specs:
          items:
            $ref: '#/components/schemas/IfixitProductSpec'
          type: array
          default: []
        bits:
          items:
            $ref: '#/components/schemas/IfixitToolkitBit'
          type: array
          default: []
      type: object
      required:
        - id
        - name
        - alias
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IfixitBreadcrumb:
      properties:
        '@type':
          type: string
          default: IfixitBreadcrumb
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    IfixitProductOption:
      properties:
        '@type':
          type: string
          default: IfixitProductOption
        name:
          type: string
        values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
    IfixitProductVariant:
      properties:
        '@type':
          type: string
          default: IfixitProductVariant
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        product_code:
          anyOf:
            - type: string
            - type: 'null'
        option_id:
          anyOf:
            - type: string
            - type: 'null'
        internal_name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        compare_at_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        is_discounted:
          anyOf:
            - type: boolean
            - type: 'null'
        quantity_available:
          anyOf:
            - type: integer
            - type: 'null'
        is_backordered:
          anyOf:
            - type: boolean
            - type: 'null'
        is_preorder:
          anyOf:
            - type: boolean
            - type: 'null'
        is_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        disable_when_out_of_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        expected_ship_date:
          anyOf:
            - type: string
            - type: 'null'
        ships_from:
          anyOf:
            - type: string
            - type: 'null'
        fulfiller:
          anyOf:
            - type: string
            - type: 'null'
        core_return_value:
          anyOf:
            - type: number
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        warning:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        description_html:
          anyOf:
            - type: string
            - type: 'null'
        note_html:
          anyOf:
            - type: string
            - type: 'null'
        disclaimer_html:
          anyOf:
            - type: string
            - type: 'null'
        specifications_html:
          anyOf:
            - type: string
            - type: 'null'
        kit_contents_html:
          anyOf:
            - type: string
            - type: 'null'
        assembly_contents_html:
          anyOf:
            - type: string
            - type: 'null'
        shipping_restrictions:
          items:
            type: string
          type: array
          default: []
        selected_options:
          items:
            $ref: '#/components/schemas/IfixitSelectedOption'
          type: array
          default: []
        cross_sells:
          items:
            $ref: '#/components/schemas/IfixitProductPreview'
          type: array
          default: []
      type: object
      required:
        - id
    IfixitCompatibleDevice:
      properties:
        '@type':
          type: string
          default: IfixitCompatibleDevice
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        variants:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - name
    IfixitProductGuide:
      properties:
        '@type':
          type: string
          default: IfixitProductGuide
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        time_required:
          anyOf:
            - type: string
            - type: 'null'
        difficulty:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    IfixitProductFaq:
      properties:
        '@type':
          type: string
          default: IfixitProductFaq
        question:
          type: string
        answer:
          anyOf:
            - type: string
            - type: 'null'
        priority:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        item_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - question
    IfixitProductPreview:
      properties:
        '@type':
          type: string
          default: IfixitProductPreview
        alias:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        quantity_available:
          anyOf:
            - type: integer
            - type: 'null'
        categories:
          items:
            type: string
          type: array
          default: []
        is_pro:
          anyOf:
            - type: boolean
            - type: 'null'
        has_lifetime_warranty:
          anyOf:
            - type: boolean
            - type: 'null'
        is_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - alias
    IfixitProductSpec:
      properties:
        '@type':
          type: string
          default: IfixitProductSpec
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    IfixitToolkitBit:
      properties:
        '@type':
          type: string
          default: IfixitToolkitBit
        id:
          type: string
        size:
          anyOf:
            - type: string
            - type: 'null'
        bit_type:
          anyOf:
            - type: string
            - type: 'null'
        driver_size:
          anyOf:
            - type: string
            - type: 'null'
        icon:
          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
    IfixitSelectedOption:
      properties:
        '@type':
          type: string
          default: IfixitSelectedOption
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````