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

# /notebookcheck/processors

> Get the full specification and benchmark record of one processor

**Price:** 10 credits

**⚠️ Common errors:** 412: The page id does not exist, or it belongs to a page that is not a processor.



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/notebookcheck/processors
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/notebookcheck/processors:
    post:
      tags:
        - /notebookcheck
      summary: /notebookcheck/processors
      description: >-
        Get the full specification and benchmark record of one processor


        **Price:** 10 credits


        **⚠️ Common errors:** 412: The page id does not exist, or it belongs to
        a page that is not a processor.
      operationId: __api_notebookcheck_processors_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotebookcheckProcessorPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotebookcheckProcessor'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NotebookcheckProcessorPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        processor:
          type: string
          minLength: 1
      type: object
      required:
        - processor
    NotebookcheckProcessor:
      properties:
        '@type':
          type: string
          default: NotebookcheckProcessor
        id:
          type: string
        url:
          type: string
        name:
          type: string
        item_id:
          anyOf:
            - type: string
            - type: 'null'
        codename:
          anyOf:
            - type: string
            - type: 'null'
        series:
          anyOf:
            - type: string
            - type: 'null'
        clock_mhz:
          anyOf:
            - type: number
            - type: 'null'
        turbo_clock_mhz:
          anyOf:
            - type: number
            - type: 'null'
        l1_cache:
          anyOf:
            - type: string
            - type: 'null'
        l2_cache:
          anyOf:
            - type: string
            - type: 'null'
        l3_cache:
          anyOf:
            - type: string
            - type: 'null'
        cores:
          anyOf:
            - type: integer
            - type: 'null'
        threads:
          anyOf:
            - type: integer
            - type: 'null'
        tdp_watt:
          anyOf:
            - type: number
            - type: 'null'
        process_nm:
          anyOf:
            - type: number
            - type: 'null'
        die_size:
          anyOf:
            - type: string
            - type: 'null'
        max_temperature_c:
          anyOf:
            - type: number
            - type: 'null'
        socket:
          anyOf:
            - type: string
            - type: 'null'
        instruction_set:
          anyOf:
            - type: string
            - type: 'null'
        is_64_bit:
          anyOf:
            - type: boolean
            - type: 'null'
        features:
          items:
            type: string
          type: array
          default: []
        graphics_card:
          anyOf:
            - type: string
            - type: 'null'
        starting_price:
          anyOf:
            - type: string
            - type: 'null'
        announcement_date:
          anyOf:
            - type: string
            - type: 'null'
        performance_rating:
          anyOf:
            - type: number
            - type: 'null'
        specs:
          items:
            $ref: '#/components/schemas/NotebookcheckSpec'
          type: array
          default: []
        benchmarks:
          items:
            $ref: '#/components/schemas/NotebookcheckChipBenchmark'
          type: array
          default: []
        series_processors:
          items:
            $ref: '#/components/schemas/NotebookcheckPageRef'
          type: array
          default: []
        surrounding_processors:
          items:
            $ref: '#/components/schemas/NotebookcheckPageRef'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/NotebookcheckPageRef'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NotebookcheckSpec:
      properties:
        '@type':
          type: string
          default: NotebookcheckSpec
        name:
          type: string
        value:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - value
    NotebookcheckChipBenchmark:
      properties:
        '@type':
          type: string
          default: NotebookcheckChipBenchmark
        name:
          type: string
        suite:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: number
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
        percentile:
          anyOf:
            - type: number
            - type: 'null'
        min_value:
          anyOf:
            - type: number
            - type: 'null'
        avg_value:
          anyOf:
            - type: number
            - type: 'null'
        max_value:
          anyOf:
            - type: number
            - type: 'null'
        lower_is_better:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - name
    NotebookcheckPageRef:
      properties:
        '@type':
          type: string
          default: NotebookcheckPageRef
        id:
          type: string
        url:
          type: string
        page_title:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    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

````