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

# Get a hall by ID

> Retrieves the complete details for a single hall by its unique identifier.
This is a public endpoint and does not require authentication.




## OpenAPI

````yaml api-reference/openapi.json get /api/halls/{hall_id}
openapi: 3.0.0
info:
  title: Tandem IT API
  version: 1.0.0
  description: API for tandem it backend
servers:
  - url: https://tandem.hlofiys.xyz
    description: Production server
security: []
tags:
  - name: Documentation
    description: API documentation endpoint
paths:
  /api/halls/{hall_id}:
    parameters:
      - name: hall_id
        in: path
        required: true
        schema:
          type: integer
          format: int64
    get:
      tags:
        - Halls
      summary: Get a hall by ID
      description: >
        Retrieves the complete details for a single hall by its unique
        identifier.

        This is a public endpoint and does not require authentication.
      operationId: getHallById
      responses:
        '200':
          description: >-
            Successful response. Contains complete information about the hall
            corresponding to the specified ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Hall'
        '404':
          description: The hall with the specified ID was not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Hall:
      type: object
      required:
        - hall_id
        - name
        - address
        - seating_chart_image_url
      properties:
        hall_id:
          type: integer
          format: int64
          description: Unique hall ID
        name:
          type: string
          description: Hall name
        address:
          type: string
          description: Hall address
        seating_chart_image_url:
          type: string
          description: Link to download the hall seating chart
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````