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

> Fetch one uploaded Geekbench GPU run by its id. Returns the compute score under the graphics API the run used (Metal, OpenCL, Vulkan or CUDA), the per-workload breakdown with each workload's score and throughput figure, the graphics device name, vendor, memory, clock and compute-unit count, and the host machine: operating system, model, motherboard, processor, clocks, caches and memory. Geekbench 4 through 7 are covered, and every information row the page carries is returned verbatim alongside the named fields.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/gpu_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/gpu_results:
    post:
      tags:
        - /geekbench
      summary: /geekbench/gpu_results
      description: >-
        Fetch one uploaded Geekbench GPU run by its id. Returns the compute
        score under the graphics API the run used (Metal, OpenCL, Vulkan or
        CUDA), the per-workload breakdown with each workload's score and
        throughput figure, the graphics device name, vendor, memory, clock and
        compute-unit count, and the host machine: operating system, model,
        motherboard, processor, clocks, caches and memory. Geekbench 4 through 7
        are covered, and every information row the page carries is returned
        verbatim alongside the named fields.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No run with that id under that Geekbench
        version, or the upload is withheld because it ran on unreleased hardware
      operationId: __api_geekbench_gpu_results_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeekbenchGpuResultsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchGpuResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchGpuResultsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        id:
          type: string
          minLength: 1
        version:
          $ref: '#/components/schemas/GeekbenchGpuVersion'
          default: '6'
      type: object
      required:
        - id
    GeekbenchGpuResult:
      properties:
        '@type':
          type: string
          default: GeekbenchGpuResult
        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: []
        compute_api:
          anyOf:
            - type: string
            - type: 'null'
        gpu_name:
          anyOf:
            - type: string
            - type: 'null'
        gpu_vendor:
          anyOf:
            - type: string
            - type: 'null'
        gpu_memory:
          anyOf:
            - type: string
            - type: 'null'
        gpu_max_frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        gpu_compute_unit_count:
          anyOf:
            - type: integer
            - 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'
    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

````