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

> Fetch a Geekbench Browser uploader profile by username, with every run they have published. Each run carries its id and URL, which Geekbench version and which family it belongs to, the machine and processor, platform and architecture, and the scores that family reports — single-core and multi-core for CPU runs, the compute score and its graphics API for GPU runs, and the three precision scores for AI runs. A per-section tally of how many runs each version and family holds comes with it.

**Price:** 5 credits

**⚠️ Common errors:** 412: No profile exists for that username



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/users
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/users:
    post:
      tags:
        - /geekbench
      summary: /geekbench/users
      description: >-
        Fetch a Geekbench Browser uploader profile by username, with every run
        they have published. Each run carries its id and URL, which Geekbench
        version and which family it belongs to, the machine and processor,
        platform and architecture, and the scores that family reports —
        single-core and multi-core for CPU runs, the compute score and its
        graphics API for GPU runs, and the three precision scores for AI runs. A
        per-section tally of how many runs each version and family holds comes
        with it.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No profile exists for that username
      operationId: __api_geekbench_users_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeekbenchUsersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchUsersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        alias:
          type: string
          minLength: 1
      type: object
      required:
        - alias
    GeekbenchUser:
      properties:
        '@type':
          type: string
          default: GeekbenchUser
        alias:
          type: string
        url:
          type: string
        name:
          type: string
        result_count:
          type: integer
          default: 0
        result_counts:
          additionalProperties:
            type: integer
          type: object
          default: {}
        results:
          items:
            $ref: '#/components/schemas/GeekbenchUserResult'
          type: array
          default: []
      type: object
      required:
        - alias
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GeekbenchUserResult:
      properties:
        '@type':
          type: string
          default: GeekbenchUserResult
        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: {}
        kind:
          type: string
        architecture:
          anyOf:
            - type: string
            - type: 'null'
        compute_api:
          anyOf:
            - type: string
            - type: 'null'
        framework:
          anyOf:
            - type: string
            - type: 'null'
        backend:
          anyOf:
            - type: string
            - type: 'null'
        single_core_score:
          anyOf:
            - type: integer
            - type: 'null'
        multi_core_score:
          anyOf:
            - type: integer
            - type: 'null'
        compute_score:
          anyOf:
            - type: integer
            - 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'
        overall_score:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
        - version
        - kind
    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

````