> ## 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/results/search

> Search submitted 3DMark, PCMark and VRMark runs, ranked from the highest score down. Narrows by benchmark and preset, graphics card, processor, Apple system model, graphics vendor and card count, desktop or laptop, memory channel count, country, drive model, submission date range, a score ceiling, and graphics core, graphics memory and processor clock ranges. Each row carries the run id and URL, the submitting user and country, the processor and graphics card, the measured clocks, and every score the benchmark reports — the headline score plus graphics, CPU and combined components, thread-count scores for CPU Profile, bandwidth and access time for Storage, and the PCMark sub-scores.

**Price:** 20 credits per 100 results

**⚠️ Common errors:** 412: No submitted run matches that combination of test and filters, or the gpu, cpu or mac_model name matched nothing in the source's hardware catalogue, 422: A filter was paired with a test that does not apply it, a score_type that test does not rank, or a country or drive model the source does not publish



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/threedmark/results/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/results/search:
    post:
      tags:
        - /threedmark
      summary: /threedmark/results/search
      description: >-
        Search submitted 3DMark, PCMark and VRMark runs, ranked from the highest
        score down. Narrows by benchmark and preset, graphics card, processor,
        Apple system model, graphics vendor and card count, desktop or laptop,
        memory channel count, country, drive model, submission date range, a
        score ceiling, and graphics core, graphics memory and processor clock
        ranges. Each row carries the run id and URL, the submitting user and
        country, the processor and graphics card, the measured clocks, and every
        score the benchmark reports — the headline score plus graphics, CPU and
        combined components, thread-count scores for CPU Profile, bandwidth and
        access time for Storage, and the PCMark sub-scores.


        **Price:** 20 credits per 100 results


        **⚠️ Common errors:** 412: No submitted run matches that combination of
        test and filters, or the gpu, cpu or mac_model name matched nothing in
        the source's hardware catalogue, 422: A filter was paired with a test
        that does not apply it, a score_type that test does not rank, or a
        country or drive model the source does not publish
      operationId: __api_threedmark_results_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThreedmarkResultsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ThreedmarkResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ThreedmarkResultsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        test:
          $ref: '#/components/schemas/ThreedmarkTest'
          default: time_spy
        score_type:
          anyOf:
            - $ref: '#/components/schemas/ThreedmarkScoreType'
            - type: 'null'
        gpu:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        cpu:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        mac_model:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        gpu_vendor:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        gpu_count:
          anyOf:
            - type: integer
              maximum: 4
              minimum: 1
            - type: 'null'
        device_type:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        memory_channel_count:
          anyOf:
            - type: integer
            - type: 'null'
        country:
          anyOf:
            - type: string
              minLength: 2
            - type: 'null'
        storage_model:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        include_ram_disks:
          type: boolean
          default: false
        include_invalid_results:
          type: boolean
          default: false
        leaderboard_mode:
          type: boolean
          default: false
        uploaded_after:
          anyOf:
            - type: string
              format: date
            - type: 'null'
        uploaded_before:
          anyOf:
            - type: string
              format: date
            - type: 'null'
        max_score:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_gpu_core_clock_mhz:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_gpu_core_clock_mhz:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_gpu_memory_clock_mhz:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_gpu_memory_clock_mhz:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_cpu_clock_mhz:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_cpu_clock_mhz:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        count:
          type: integer
          maximum: 3000
          minimum: 1
      type: object
      required:
        - count
    ThreedmarkResult:
      properties:
        '@type':
          type: string
          default: ThreedmarkResult
        id:
          type: string
        url:
          type: string
        test:
          type: string
        test_name:
          anyOf:
            - type: string
            - type: 'null'
        test_code:
          anyOf:
            - type: string
            - type: 'null'
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
        user:
          anyOf:
            - type: string
            - type: 'null'
        user_id:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        cpu:
          anyOf:
            - type: string
            - type: 'null'
        gpu:
          anyOf:
            - type: string
            - type: 'null'
        gpu_count:
          anyOf:
            - type: integer
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        storage_model:
          anyOf:
            - type: string
            - type: 'null'
        device_type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        max_clock_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        gpu_core_clock_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        gpu_memory_clock_mhz:
          anyOf:
            - type: integer
            - type: 'null'
        overall_score:
          anyOf:
            - type: number
            - type: 'null'
        graphics_score:
          anyOf:
            - type: number
            - type: 'null'
        physics_score:
          anyOf:
            - type: number
            - type: 'null'
        combined_score:
          anyOf:
            - type: number
            - type: 'null'
        average_fps:
          anyOf:
            - type: number
            - type: 'null'
        target_fps:
          anyOf:
            - type: number
            - type: 'null'
        scores:
          additionalProperties:
            type: number
          type: object
          default: {}
      type: object
      required:
        - id
        - url
        - test
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ThreedmarkTest:
      type: string
      enum:
        - time_spy
        - time_spy_extreme
        - speed_way
        - steel_nomad_dx12
        - steel_nomad_vulkan
        - steel_nomad_light_dx12
        - steel_nomad_light_vulkan
        - port_royal
        - solar_bay
        - solar_bay_extreme_dx12
        - solar_bay_extreme_vulkan
        - fire_strike
        - fire_strike_extreme
        - fire_strike_ultra
        - wild_life
        - wild_life_extreme
        - night_raid
        - cpu_profile
        - storage
        - pcmark_10
        - pcmark_10_v2_0
        - pcmark_10_express
        - pcmark_10_express_v2_0
        - pcmark_10_extended
        - pcmark_10_extended_v2_0
        - vrmark_orange_room
        - vrmark_cyan_room
        - vrmark_blue_room
        - steel_nomad_mac
        - steel_nomad_light_mac
        - solar_bay_mac
        - solar_bay_extreme_mac
        - wild_life_extreme_mac
    ThreedmarkScoreType:
      type: string
      enum:
        - all_cores_score
        - bandwidth
        - combined_score
        - eight_cores_score
        - four_cores_score
        - graphics_score
        - overall_score
        - physics_score
        - single_core_score
        - sixteen_cores_score
        - two_cores_score
    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

````