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

# Get room details

> Get room details by room code



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi get /api/v1/rooms/{roomCode}
openapi: 3.1.0
info:
  title: IntelliQ API
  description: API for IntelliQ
  version: 2.0.0
servers:
  - url: http://localhost:8787
    description: Local server
  - url: https://app.intelliq.dev
    description: Production server
security: []
paths:
  /api/v1/rooms/{roomCode}:
    get:
      tags:
        - Rooms
      summary: Get room details
      description: Get room details by room code
      operationId: getApiV1RoomsByRoomCode
      parameters:
        - in: path
          name: roomCode
          schema:
            type: string
            minLength: 4
          required: true
      responses:
        '200':
          description: Room details
          content:
            application/json:
              schema:
                type: object
                properties:
                  maxPlayers:
                    type: number
                required:
                  - maxPlayers
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error

````