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

# /geekbench/cpu_results/search

> Search uploaded Geekbench CPU runs by device, board, chip or vendor name, newest first, within one Geekbench major version. Each row carries the run id and URL, the system and processor name, clock speed and core count, the platform, the upload time and the single-core and multi-core scores — the single overall score on version 2. Feed the id and version to the CPU run endpoint for the full workload breakdown and machine detail.

**Price:** 5 credits per 25 results



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/cpu_results/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/geekbench/cpu_results/search:
    post:
      tags:
        - /geekbench
      summary: /geekbench/cpu_results/search
      description: >-
        Search uploaded Geekbench CPU runs by device, board, chip or vendor
        name, newest first, within one Geekbench major version. Each row carries
        the run id and URL, the system and processor name, clock speed and core
        count, the platform, the upload time and the single-core and multi-core
        scores — the single overall score on version 2. Feed the id and version
        to the CPU run endpoint for the full workload breakdown and machine
        detail.


        **Price:** 5 credits per 25 results
      operationId: __api_geekbench_cpu_results_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeekbenchCpuResultsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchCpuResultRow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchCpuResultsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          minLength: 1
        version:
          $ref: '#/components/schemas/GeekbenchCpuVersion'
          default: '6'
        count:
          type: integer
          maximum: 1500
          minimum: 1
      type: object
      required:
        - query
        - count
    GeekbenchCpuResultRow:
      properties:
        '@type':
          type: string
          default: GeekbenchCpuResultRow
        id:
          type: string
        url:
          type: string
        version:
          type: string
        system:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        platform:
          anyOf:
            - type: string
            - type: 'null'
        user:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
        frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        core_count:
          anyOf:
            - type: integer
            - type: 'null'
        details:
          additionalProperties:
            type: string
          type: object
          default: {}
        architecture:
          anyOf:
            - type: string
            - type: 'null'
        single_core_score:
          anyOf:
            - type: integer
            - type: 'null'
        multi_core_score:
          anyOf:
            - type: integer
            - type: 'null'
        overall_score:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
        - version
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GeekbenchCpuVersion:
      type: string
      enum:
        - '2'
        - '3'
        - '4'
        - '5'
        - '6'
        - '7'
    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

````