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

# /threedmark/hardware/search

> Read UL's full ranking of graphics cards or processors, ordered by 3DMark score, name, MSRP, value for money or recent popularity, and optionally narrowed to desktop parts, mobile parts or Apple silicon and to a minimum performance rating. Each row carries the part's rank, its name as UL spells it, the launch price, the median 3DMark score with the test that score comes from, a value-for-money rating and a popularity figure from the last 30 days of submissions. The CPU ranking's other per-thread-count columns (single thread, 2/4/8/16 threads) come back in `scores`.

**Price:** 10 credits



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/threedmark/hardware/search
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/threedmark/hardware/search:
    post:
      tags:
        - /threedmark
      summary: /threedmark/hardware/search
      description: >-
        Read UL's full ranking of graphics cards or processors, ordered by
        3DMark score, name, MSRP, value for money or recent popularity, and
        optionally narrowed to desktop parts, mobile parts or Apple silicon and
        to a minimum performance rating. Each row carries the part's rank, its
        name as UL spells it, the launch price, the median 3DMark score with the
        test that score comes from, a value-for-money rating and a popularity
        figure from the last 30 days of submissions. The CPU ranking's other
        per-thread-count columns (single thread, 2/4/8/16 threads) come back in
        `scores`.


        **Price:** 10 credits
      operationId: __api_threedmark_hardware_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThreedmarkHardwareSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ThreedmarkHardwareRanking'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ThreedmarkHardwareSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        kind:
          $ref: '#/components/schemas/ThreedmarkHardwareKind'
          default: gpu
        sort:
          $ref: '#/components/schemas/ThreedmarkHardwareSort'
          default: SCORE
        ascending:
          type: boolean
          default: false
        form_factors:
          anyOf:
            - items:
                $ref: '#/components/schemas/ThreedmarkHardwareFormFactor'
              type: array
            - type: 'null'
        min_rating:
          type: integer
          maximum: 5
          minimum: 0
          default: 0
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    ThreedmarkHardwareRanking:
      properties:
        '@type':
          type: string
          default: ThreedmarkHardwareRanking
        name:
          type: string
        kind:
          type: string
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        msrp_price:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        value_for_money:
          anyOf:
            - type: number
            - type: 'null'
        popularity:
          anyOf:
            - type: number
            - type: 'null'
        score_test:
          anyOf:
            - type: string
            - type: 'null'
        scores:
          additionalProperties:
            type: number
          type: object
          default: {}
      type: object
      required:
        - name
        - kind
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ThreedmarkHardwareKind:
      type: string
      enum:
        - gpu
        - cpu
        - mac
    ThreedmarkHardwareSort:
      type: string
      enum:
        - SCORE
        - NAME
        - PRICE
        - VALUE_FOR_MONEY
        - POPULARITY
    ThreedmarkHardwareFormFactor:
      type: string
      enum:
        - DESKTOP
        - MOBILE
        - MAC
    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

````