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

> Fetch one device's Geekbench rollup by its slug. Returns the marketing name, the model identifier the operating system reports, the processor with its frequency and core count, and the single-core, multi-core and graphics scores aggregated across every run uploaded for that device, plus the ranked comparison tables against other devices of the same family, each peer carrying its own slug so it can be fetched in turn.

**Price:** 10 credits

**⚠️ Common errors:** 412: No device page exists for that slug in that catalogue



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/devices
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/devices:
    post:
      tags:
        - /geekbench
      summary: /geekbench/devices
      description: >-
        Fetch one device's Geekbench rollup by its slug. Returns the marketing
        name, the model identifier the operating system reports, the processor
        with its frequency and core count, and the single-core, multi-core and
        graphics scores aggregated across every run uploaded for that device,
        plus the ranked comparison tables against other devices of the same
        family, each peer carrying its own slug so it can be fetched in turn.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: No device page exists for that slug in that
        catalogue
      operationId: __api_geekbench_devices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeekbenchDevicesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchDevice'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchDevicesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        alias:
          type: string
          minLength: 1
        platform:
          $ref: '#/components/schemas/GeekbenchDevicePlatform'
      type: object
      required:
        - alias
        - platform
    GeekbenchDevice:
      properties:
        '@type':
          type: string
          default: GeekbenchDevice
        alias:
          type: string
        url:
          type: string
        platform:
          type: string
        name:
          type: string
        model_identifier:
          anyOf:
            - type: string
            - type: 'null'
        processor:
          anyOf:
            - type: string
            - type: 'null'
        processor_frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        processor_core_count:
          anyOf:
            - type: integer
            - type: 'null'
        single_core_score:
          anyOf:
            - type: integer
            - type: 'null'
        multi_core_score:
          anyOf:
            - type: integer
            - type: 'null'
        scores:
          additionalProperties:
            type: integer
          type: object
          default: {}
        details:
          additionalProperties:
            type: string
          type: object
          default: {}
        charts:
          items:
            $ref: '#/components/schemas/GeekbenchComparisonChart'
          type: array
          default: []
      type: object
      required:
        - alias
        - url
        - platform
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GeekbenchDevicePlatform:
      type: string
      enum:
        - android
        - ios
        - mac
    GeekbenchComparisonChart:
      properties:
        '@type':
          type: string
          default: GeekbenchComparisonChart
        name:
          type: string
        rows:
          items:
            $ref: '#/components/schemas/GeekbenchChartRow'
          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
    GeekbenchChartRow:
      properties:
        '@type':
          type: string
          default: GeekbenchChartRow
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: integer
            - type: 'null'
        scores:
          additionalProperties:
            type: integer
          type: object
          default: {}
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````