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

> Fetch one uploaded Geekbench AI run by its id. Returns the single-precision, half-precision and quantized scores, the inference framework and backend the run used, and the per-workload breakdown — each of the ten workloads at all three precisions, with its score, its throughput figure and the accuracy it achieved. The host machine comes with it: operating system, model and model identifier, motherboard, processor name, topology, clocks and caches, and memory size.

**Price:** 1 credit

**⚠️ Common errors:** 412: No Geekbench AI run with that id, or the upload is withheld because it ran on unreleased hardware



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/ai_results
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:
    post:
      tags:
        - /geekbench
      summary: /geekbench/ai_results
      description: >-
        Fetch one uploaded Geekbench AI run by its id. Returns the
        single-precision, half-precision and quantized scores, the inference
        framework and backend the run used, and the per-workload breakdown —
        each of the ten workloads at all three precisions, with its score, its
        throughput figure and the accuracy it achieved. The host machine comes
        with it: operating system, model and model identifier, motherboard,
        processor name, topology, clocks and caches, and memory size.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No Geekbench AI run with that id, or the
        upload is withheld because it ran on unreleased hardware
      operationId: __api_geekbench_ai_results_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeekbenchAiResultsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchAiResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchAiResultsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        id:
          type: string
          minLength: 1
      type: object
      required:
        - id
    GeekbenchAiResult:
      properties:
        '@type':
          type: string
          default: GeekbenchAiResult
        id:
          type: string
        url:
          type: string
        version:
          type: string
        system_title:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        user:
          anyOf:
            - type: string
            - type: 'null'
        benchmark_version:
          anyOf:
            - type: string
            - type: 'null'
        validation:
          anyOf:
            - type: string
            - type: 'null'
        operating_system:
          anyOf:
            - type: string
            - type: 'null'
        system_model:
          anyOf:
            - type: string
            - type: 'null'
        system_model_id:
          anyOf:
            - type: string
            - type: 'null'
        motherboard:
          anyOf:
            - type: string
            - type: 'null'
        cpu_name:
          anyOf:
            - type: string
            - type: 'null'
        cpu_identifier:
          anyOf:
            - type: string
            - type: 'null'
        cpu_topology:
          anyOf:
            - type: string
            - type: 'null'
        cpu_processor_count:
          anyOf:
            - type: integer
            - type: 'null'
        cpu_core_count:
          anyOf:
            - type: integer
            - type: 'null'
        cpu_thread_count:
          anyOf:
            - type: integer
            - type: 'null'
        cpu_base_frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        cpu_max_frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        memory_size_gb:
          anyOf:
            - type: number
            - type: 'null'
        memory_type:
          anyOf:
            - type: string
            - type: 'null'
        memory_channel_count:
          anyOf:
            - type: integer
            - type: 'null'
        scores:
          additionalProperties:
            type: integer
          type: object
          default: {}
        information:
          items:
            $ref: '#/components/schemas/GeekbenchInfoSection'
          type: array
          default: []
        benchmarks:
          items:
            $ref: '#/components/schemas/GeekbenchBenchmarkSection'
          type: array
          default: []
        framework:
          anyOf:
            - type: string
            - type: 'null'
        backend:
          anyOf:
            - type: string
            - type: 'null'
        device:
          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
    GeekbenchInfoSection:
      properties:
        '@type':
          type: string
          default: GeekbenchInfoSection
        name:
          type: string
        details:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
      required:
        - name
    GeekbenchBenchmarkSection:
      properties:
        '@type':
          type: string
          default: GeekbenchBenchmarkSection
        name:
          type: string
        score:
          anyOf:
            - type: integer
            - type: 'null'
        workloads:
          items:
            $ref: '#/components/schemas/GeekbenchWorkload'
          type: array
          default: []
      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
    GeekbenchWorkload:
      properties:
        '@type':
          type: string
          default: GeekbenchWorkload
        name:
          type: string
        score:
          anyOf:
            - type: integer
            - type: 'null'
        measurement:
          anyOf:
            - type: string
            - type: 'null'
        accuracy:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````