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

# /vesa/displayhdr/products

> List the displays VESA has certified under DisplayHDR, across all ten tiers from DisplayHDR 400 to DisplayHDR 1400 and the True Black tiers for emissive panels. Narrows by tier, by a keyword matched against the model name and its family model numbers, and by the Compliance Test Specification version. Returns the certified model, its tier, the CTS version and every family model number the certification also covers.

**Price:** 10 credits

**⚠️ Common errors:** 412: No certified display matched the tier, keyword and CTS version combination



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/vesa/displayhdr/products
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/vesa/displayhdr/products:
    post:
      tags:
        - /vesa
      summary: /vesa/displayhdr/products
      description: >-
        List the displays VESA has certified under DisplayHDR, across all ten
        tiers from DisplayHDR 400 to DisplayHDR 1400 and the True Black tiers
        for emissive panels. Narrows by tier, by a keyword matched against the
        model name and its family model numbers, and by the Compliance Test
        Specification version. Returns the certified model, its tier, the CTS
        version and every family model number the certification also covers.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: No certified display matched the tier,
        keyword and CTS version combination
      operationId: __api_vesa_displayhdr_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VesaDisplayHdrPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VesaDisplayHdrProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    VesaDisplayHdrPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tier:
          anyOf:
            - items:
                $ref: '#/components/schemas/VesaDisplayHdrTier'
              type: array
            - type: 'null'
        search:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        cts_version:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          maximum: 3000
          minimum: 1
      type: object
      required:
        - count
    VesaDisplayHdrProduct:
      properties:
        '@type':
          type: string
          default: VesaDisplayHdrProduct
        certificate_id:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        tier:
          anyOf:
            - type: string
            - type: 'null'
        tier_label:
          anyOf:
            - type: string
            - type: 'null'
        cts_version:
          anyOf:
            - type: string
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    VesaDisplayHdrTier:
      type: string
      enum:
        - displayhdr_400
        - displayhdr_500
        - displayhdr_600
        - displayhdr_1000
        - displayhdr_1400
        - true_black_400
        - true_black_500
        - true_black_600
        - true_black_1000
        - true_black_1400
    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

````