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

# /notebookcheck/graphics_cards

> Get the full specification, synthetic benchmarks and per-game frame rates of one graphics card

**Price:** 20 credits

**⚠️ Common errors:** 412: The page id does not exist, or it belongs to a page that is not a graphics card.



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/notebookcheck/graphics_cards
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/notebookcheck/graphics_cards:
    post:
      tags:
        - /notebookcheck
      summary: /notebookcheck/graphics_cards
      description: >-
        Get the full specification, synthetic benchmarks and per-game frame
        rates of one graphics card


        **Price:** 20 credits


        **⚠️ Common errors:** 412: The page id does not exist, or it belongs to
        a page that is not a graphics card.
      operationId: __api_notebookcheck_graphics_cards_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotebookcheckGraphicsCardPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotebookcheckGraphicsCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NotebookcheckGraphicsCardPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        graphics_card:
          type: string
          minLength: 1
      type: object
      required:
        - graphics_card
    NotebookcheckGraphicsCard:
      properties:
        '@type':
          type: string
          default: NotebookcheckGraphicsCard
        id:
          type: string
        url:
          type: string
        name:
          type: string
        item_id:
          anyOf:
            - type: string
            - type: 'null'
        codename:
          anyOf:
            - type: string
            - type: 'null'
        architecture:
          anyOf:
            - type: string
            - type: 'null'
        pipelines:
          anyOf:
            - type: string
            - type: 'null'
        tmus:
          anyOf:
            - type: integer
            - type: 'null'
        rops:
          anyOf:
            - type: integer
            - type: 'null'
        raytracing_cores:
          anyOf:
            - type: string
            - type: 'null'
        tensor_cores:
          anyOf:
            - type: string
            - type: 'null'
        core_speed:
          anyOf:
            - type: string
            - type: 'null'
        theoretical_performance:
          anyOf:
            - type: string
            - type: 'null'
        cache:
          anyOf:
            - type: string
            - type: 'null'
        memory_speed:
          anyOf:
            - type: string
            - type: 'null'
        memory_bus_width:
          anyOf:
            - type: string
            - type: 'null'
        memory_type:
          anyOf:
            - type: string
            - type: 'null'
        max_memory:
          anyOf:
            - type: string
            - type: 'null'
        shared_memory:
          anyOf:
            - type: string
            - type: 'null'
        memory_bandwidth:
          anyOf:
            - type: string
            - type: 'null'
        api:
          anyOf:
            - type: string
            - type: 'null'
        power_consumption:
          anyOf:
            - type: string
            - type: 'null'
        process_nm:
          anyOf:
            - type: number
            - type: 'null'
        pcie:
          anyOf:
            - type: string
            - type: 'null'
        displays:
          anyOf:
            - type: string
            - type: 'null'
        notebook_size:
          anyOf:
            - type: string
            - type: 'null'
        predecessor:
          anyOf:
            - type: string
            - type: 'null'
        announcement_date:
          anyOf:
            - type: string
            - type: 'null'
        performance_rating:
          anyOf:
            - type: number
            - type: 'null'
        specs:
          items:
            $ref: '#/components/schemas/NotebookcheckSpec'
          type: array
          default: []
        benchmarks:
          items:
            $ref: '#/components/schemas/NotebookcheckChipBenchmark'
          type: array
          default: []
        game_benchmarks:
          items:
            $ref: '#/components/schemas/NotebookcheckGameBenchmark'
          type: array
          default: []
        series_graphics_cards:
          items:
            $ref: '#/components/schemas/NotebookcheckPageRef'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/NotebookcheckPageRef'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NotebookcheckSpec:
      properties:
        '@type':
          type: string
          default: NotebookcheckSpec
        name:
          type: string
        value:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - value
    NotebookcheckChipBenchmark:
      properties:
        '@type':
          type: string
          default: NotebookcheckChipBenchmark
        name:
          type: string
        suite:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: number
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
        percentile:
          anyOf:
            - type: number
            - type: 'null'
        min_value:
          anyOf:
            - type: number
            - type: 'null'
        avg_value:
          anyOf:
            - type: number
            - type: 'null'
        max_value:
          anyOf:
            - type: number
            - type: 'null'
        lower_is_better:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - name
    NotebookcheckGameBenchmark:
      properties:
        '@type':
          type: string
          default: NotebookcheckGameBenchmark
        game:
          type: string
        release_year:
          anyOf:
            - type: integer
            - type: 'null'
        quality:
          anyOf:
            - type: string
            - type: 'null'
        resolution:
          anyOf:
            - type: string
            - type: 'null'
        preset:
          anyOf:
            - type: string
            - type: 'null'
        results:
          items:
            $ref: '#/components/schemas/NotebookcheckGameResult'
          type: array
          default: []
      type: object
      required:
        - game
    NotebookcheckPageRef:
      properties:
        '@type':
          type: string
          default: NotebookcheckPageRef
        id:
          type: string
        url:
          type: string
        page_title:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    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
    NotebookcheckGameResult:
      properties:
        '@type':
          type: string
          default: NotebookcheckGameResult
        device:
          anyOf:
            - type: string
            - type: 'null'
        device_url:
          anyOf:
            - type: string
            - type: 'null'
        cpu:
          anyOf:
            - type: string
            - type: 'null'
        gpu:
          anyOf:
            - type: string
            - type: 'null'
        fps:
          anyOf:
            - type: number
            - type: 'null'
        min_fps:
          anyOf:
            - type: number
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````