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

> Search the processor benchmark database by segment, cores, threads, TDP, age and free text

**Price:** 20 credits per 500 results



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/notebookcheck/processors/search
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/search:
    post:
      tags:
        - /notebookcheck
      summary: /notebookcheck/processors/search
      description: >-
        Search the processor benchmark database by segment, cores, threads, TDP,
        age and free text


        **Price:** 20 credits per 500 results
      operationId: __api_notebookcheck_processors_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotebookcheckProcessorSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotebookcheckProcessorListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NotebookcheckProcessorSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        match_all_words:
          type: boolean
          default: true
        segment:
          $ref: '#/components/schemas/NotebookcheckProcessorSegment'
          default: all
        instruction_set:
          anyOf:
            - $ref: '#/components/schemas/NotebookcheckInstructionSet'
            - type: 'null'
        min_cores:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        min_threads:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        min_tdp_watt:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        max_tdp_watt:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        announced_months_ago:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        benchmarked_only:
          type: boolean
          default: false
        on_sale_only:
          type: boolean
          default: false
        sort_by:
          anyOf:
            - $ref: '#/components/schemas/NotebookcheckProcessorSort'
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    NotebookcheckProcessorListing:
      properties:
        '@type':
          type: string
          default: NotebookcheckProcessorListing
        item_id:
          type: string
        name:
          type: string
        page_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: integer
            - type: 'null'
        codename:
          anyOf:
            - type: string
            - type: 'null'
        series:
          anyOf:
            - type: string
            - type: 'null'
        l2_cache:
          anyOf:
            - type: string
            - type: 'null'
        l3_cache:
          anyOf:
            - type: string
            - type: 'null'
        tdp_watt:
          anyOf:
            - type: number
            - type: 'null'
        tdp_turbo_watt:
          anyOf:
            - type: number
            - type: 'null'
        clock_mhz:
          anyOf:
            - type: number
            - type: 'null'
        turbo_clock_mhz:
          anyOf:
            - type: number
            - type: 'null'
        cores:
          anyOf:
            - type: integer
            - type: 'null'
        threads:
          anyOf:
            - type: integer
            - type: 'null'
        process_nm:
          anyOf:
            - type: number
            - type: 'null'
        instruction_set:
          anyOf:
            - type: string
            - type: 'null'
        is_64_bit:
          anyOf:
            - type: boolean
            - type: 'null'
        ai_npu_tops_int8:
          anyOf:
            - type: number
            - type: 'null'
        ai_chip_tops_int8:
          anyOf:
            - type: number
            - type: 'null'
        graphics_card:
          anyOf:
            - type: string
            - type: 'null'
        performance_rating:
          anyOf:
            - type: number
            - type: 'null'
        performance_percent:
          anyOf:
            - type: number
            - type: 'null'
        benchmarks:
          items:
            $ref: '#/components/schemas/NotebookcheckBenchmark'
          type: array
          default: []
      type: object
      required:
        - item_id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NotebookcheckProcessorSegment:
      type: string
      enum:
        - all
        - laptop
        - desktop
        - smartphone_and_tablet
        - laptop_and_desktop
    NotebookcheckInstructionSet:
      type: string
      enum:
        - x86
        - arm
    NotebookcheckProcessorSort:
      type: string
      enum:
        - name
        - codename
        - cores
        - threads
        - clock
        - turbo_clock
        - tdp
        - tdp_turbo
        - l2_cache
        - l3_cache
    NotebookcheckBenchmark:
      properties:
        '@type':
          type: string
          default: NotebookcheckBenchmark
        name:
          type: string
        value:
          anyOf:
            - type: number
            - type: 'null'
        sample_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    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

````