> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anny.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get display panel

> Retrieve the current state of a display panel including its configuration and active bookings. Authenticated via the panel's `secret` query parameter — no Bearer token required.



## OpenAPI

````yaml /developers/openapi/additional-internal.openapi.json get /api/v1/display-panels/{panel_uuid}
openapi: 3.1.0
info:
  title: Additional Internal API
  version: '1.0'
servers:
  - url: https://b.anny.co
    description: Production
  - url: https://b.anny.eu
    description: Gov-Cloud
security: []
paths:
  /api/v1/display-panels/{panel_uuid}:
    parameters:
      - name: panel_uuid
        in: path
        required: true
        description: The display panel UUID.
        schema:
          type: string
    get:
      tags:
        - Display Panels
      summary: Get display panel
      description: >-
        Retrieve the current state of a display panel including its
        configuration and active bookings. Authenticated via the panel's
        `secret` query parameter — no Bearer token required.
      operationId: get-display-panels-record
      parameters:
        - schema:
            type: string
            format: uuid
          in: query
          name: secret
          required: true
          description: Panel authentication secret
        - schema:
            type: string
            enum:
              - organization
              - bookings
              - current_bookings
              - next_bookings
              - resource
              - resource.cover_image
              - static_image
          in: query
          name: include
          description: Comma-separated list of relationships to include
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/display-panels.v1'
        '401':
          description: Unauthorized — invalid or missing secret
        '404':
          description: Not Found
components:
  schemas:
    display-panels.v1:
      $schema: https://json-schema.org/draft/2020-12/schema
      x-version: 1.1.0
      title: DisplayPanel
      type: object
      description: A panel widget on a display showing specific content.
      x-tags:
        - Models
      properties:
        id:
          type: string
        type:
          type: string
          default: displaypanels
        attributes:
          type: object
          properties:
            panel_type:
              type: string
              description: Panel type
            layout:
              type: object
              description: Panel layout configuration
            order_index:
              type: integer
              description: Display order
            background_color:
              type:
                - string
                - 'null'
              description: Background color
            accent_color:
              type:
                - string
                - 'null'
              description: Accent color
            text_color:
              type:
                - string
                - 'null'
              description: Text color
            timezone:
              type: string
              description: Timezone
            created_at:
              type: string
              description: Creation timestamp
        links:
          $ref: '#/components/schemas/links.v1'
        relationships:
          type: object
          properties:
            display:
              type: object
              description: Parent display
              properties:
                data:
                  type:
                    - object
                    - 'null'
                  properties:
                    type:
                      type: string
                    id:
                      type: string
                links:
                  $ref: '#/components/schemas/links.v1'
    links.v1:
      $schema: https://json-schema.org/draft/2020-12/schema
      x-version: 1.1.0
      title: ResourceLinks
      x-tags:
        - Models
      type: object
      description: JSON:API self-link object
      properties:
        self:
          type: string
          format: uri

````