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

> Fetch one processor's Geekbench rollup by its slug. Returns the chip specification — base and maximum frequency, core, performance-core, efficient-core and thread counts, base and maximum power, microarchitecture codename and socket package — together with the single-core and multi-core scores aggregated across every run uploaded for that chip, and the ranked comparison tables the page shows against other processors of the same family, each peer carrying its own slug so it can be fetched in turn.

**Price:** 1 credit

**⚠️ Common errors:** 412: No processor page exists for that slug



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/geekbench/processors
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/processors:
    post:
      tags:
        - /geekbench
      summary: /geekbench/processors
      description: >-
        Fetch one processor's Geekbench rollup by its slug. Returns the chip
        specification — base and maximum frequency, core, performance-core,
        efficient-core and thread counts, base and maximum power,
        microarchitecture codename and socket package — together with the
        single-core and multi-core scores aggregated across every run uploaded
        for that chip, and the ranked comparison tables the page shows against
        other processors of the same family, each peer carrying its own slug so
        it can be fetched in turn.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No processor page exists for that slug
      operationId: __api_geekbench_processors_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GeekbenchProcessorsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GeekbenchProcessor'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GeekbenchProcessorsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        alias:
          type: string
          minLength: 1
      type: object
      required:
        - alias
    GeekbenchProcessor:
      properties:
        '@type':
          type: string
          default: GeekbenchProcessor
        alias:
          type: string
        url:
          type: string
        name:
          type: string
        codename:
          anyOf:
            - type: string
            - type: 'null'
        package:
          anyOf:
            - type: string
            - type: 'null'
        frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        max_frequency_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        core_count:
          anyOf:
            - type: integer
            - type: 'null'
        performance_core_count:
          anyOf:
            - type: integer
            - type: 'null'
        efficient_core_count:
          anyOf:
            - type: integer
            - type: 'null'
        thread_count:
          anyOf:
            - type: integer
            - type: 'null'
        base_power_watt:
          anyOf:
            - type: integer
            - type: 'null'
        max_power_watt:
          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
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    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

````