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

# /displayspecifications/models

> Return the full DisplaySpecifications sheet for one desktop monitor or TV: brand, series, model and aliases, announcement year, size, official image, and every specification row the source publishes, grouped by section and carrying the source's own glossary text for each field, plus the other models of the same series.

**Price:** 5 credits

**⚠️ Common errors:** 412: No model exists under this id on DisplaySpecifications.



## OpenAPI

````yaml /openapi/hardware-benchmarks.json post /api/displayspecifications/models
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/displayspecifications/models:
    post:
      tags:
        - /displayspecifications
      summary: /displayspecifications/models
      description: >-
        Return the full DisplaySpecifications sheet for one desktop monitor or
        TV: brand, series, model and aliases, announcement year, size, official
        image, and every specification row the source publishes, grouped by
        section and carrying the source's own glossary text for each field, plus
        the other models of the same series.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No model exists under this id on
        DisplaySpecifications.
      operationId: __api_displayspecifications_models_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DisplayspecificationsModelsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DisplayspecificationsModel'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DisplayspecificationsModelsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        model:
          type: string
          minLength: 1
        locale:
          $ref: '#/components/schemas/DisplayspecificationsLocale'
          default: en
      type: object
      required:
        - model
    DisplayspecificationsModel:
      properties:
        '@type':
          type: string
          default: DisplayspecificationsModel
        id:
          type: string
        url:
          type: string
        locale:
          type: string
        name:
          type: string
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        series:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
        year:
          anyOf:
            - type: integer
            - type: 'null'
        size_inches:
          anyOf:
            - type: number
            - type: 'null'
        is_tv:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        sections:
          items:
            type: string
          type: array
          default: []
        specs:
          items:
            $ref: '#/components/schemas/DisplayspecificationsSpec'
          type: array
          default: []
        series_models:
          items:
            $ref: '#/components/schemas/DisplayspecificationsSeriesModel'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - locale
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DisplayspecificationsLocale:
      type: string
      enum:
        - en
        - de
        - es
        - fr
        - ru
        - bg
    DisplayspecificationsSpec:
      properties:
        '@type':
          type: string
          default: DisplayspecificationsSpec
        section:
          type: string
        section_description:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        value:
          type: string
        values:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - section
        - value
    DisplayspecificationsSeriesModel:
      properties:
        '@type':
          type: string
          default: DisplayspecificationsSeriesModel
        id:
          type: string
        url:
          type: string
        name:
          type: string
        size_inches:
          anyOf:
            - type: number
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
        - 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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````