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

> Search uploaded Geekbench GPU 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 graphics API the run measured and its compute score. Feed the id and version to the GPU run endpoint for the workload breakdown and the graphics device detail.

**Price:** 5 credits per 25 results



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/gpu_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/gpu_results/search:
    post:
      tags:
        - /geekbench
      summary: /geekbench/gpu_results/search
      description: >-
        Search uploaded Geekbench GPU 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 graphics API the run measured and its compute
        score. Feed the id and version to the GPU run endpoint for the workload
        breakdown and the graphics device detail.


        **Price:** 5 credits per 25 results
      operationId: __api_geekbench_gpu_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/GeekbenchGpuResultsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchGpuResultRow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchGpuResultsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          minLength: 1
        version:
          $ref: '#/components/schemas/GeekbenchGpuVersion'
          default: '6'
        count:
          type: integer
          maximum: 1500
          minimum: 1
      type: object
      required:
        - query
        - count
    GeekbenchGpuResultRow:
      properties:
        '@type':
          type: string
          default: GeekbenchGpuResultRow
        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: {}
        compute_api:
          anyOf:
            - type: string
            - type: 'null'
        compute_score:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
        - version
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GeekbenchGpuVersion:
      type: string
      enum:
        - '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

````