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

> Search uploaded Geekbench AI runs by device or chip name, or walk the newest and the top-scoring runs when no query is given. Each row carries the run id and URL, the device and chip name, the inference framework, and the single-precision, half-precision and quantized scores; the run list also carries the upload time. Feed an id to the Geekbench AI run endpoint for the workload breakdown, the backend and the host machine.

**Price:** 5 credits per 30 results

**⚠️ Common errors:** 422: sort or order was passed together with a query, which the source cannot combine



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/ai_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/ai_results/search:
    post:
      tags:
        - /geekbench
      summary: /geekbench/ai_results/search
      description: >-
        Search uploaded Geekbench AI runs by device or chip name, or walk the
        newest and the top-scoring runs when no query is given. Each row carries
        the run id and URL, the device and chip name, the inference framework,
        and the single-precision, half-precision and quantized scores; the run
        list also carries the upload time. Feed an id to the Geekbench AI run
        endpoint for the workload breakdown, the backend and the host machine.


        **Price:** 5 credits per 30 results


        **⚠️ Common errors:** 422: sort or order was passed together with a
        query, which the source cannot combine
      operationId: __api_geekbench_ai_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/GeekbenchAiResultsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchAiResultRow'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchAiResultsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        sort:
          $ref: '#/components/schemas/GeekbenchAiSort'
          default: created_at
        order:
          $ref: '#/components/schemas/GeekbenchAiOrder'
          default: desc
        count:
          type: integer
          maximum: 1500
          minimum: 1
      type: object
      required:
        - count
    GeekbenchAiResultRow:
      properties:
        '@type':
          type: string
          default: GeekbenchAiResultRow
        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: {}
        framework:
          anyOf:
            - type: string
            - type: 'null'
        single_precision_score:
          anyOf:
            - type: integer
            - type: 'null'
        half_precision_score:
          anyOf:
            - type: integer
            - type: 'null'
        quantized_score:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
        - version
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GeekbenchAiSort:
      type: string
      enum:
        - created_at
        - sp_score
        - hp_score
        - q_score
    GeekbenchAiOrder:
      type: string
      enum:
        - desc
        - asc
    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

````