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

# List rooms

> Returns a paginated list of rooms accessible to the authenticated user. Rooms group related meetings together.



## OpenAPI

````yaml GET /rooms
openapi: 3.1.0
info:
  title: Timeless Public API
  version: 0.1.0
  description: >-
    The Timeless API is a REST API served over HTTPS. All requests and responses
    use JSON, and all endpoints require authentication.
servers:
  - url: https://api.timeless.day/v1
    description: Production
security:
  - HTTPBearer: []
tags:
  - name: meetings
    description: Retrieve meetings, recordings, and transcripts.
  - name: rooms
    description: Retrieve rooms that group related meetings.
  - name: documents
    description: Retrieve AI-generated meeting documents.
  - name: upload
    description: Upload audio or video files for transcription.
  - name: webhooks
    description: Manage webhook subscriptions for event notifications.
paths:
  /rooms:
    get:
      tags:
        - rooms
      summary: List rooms
      description: >-
        Returns a paginated list of rooms accessible to the authenticated user.
        Rooms group related meetings together.
      operationId: get_rooms_v1_rooms_get
      parameters:
        - name: id
          in: query
          required: false
          schema:
            anyOf:
              - type: array
                items:
                  type: string
              - type: 'null'
            title: Id
          description: Filter by one or more room IDs.
        - name: scope
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/RoomScope'
            default: all
          description: |-
            Filter by ownership scope.
            - `all` — all accessible rooms
            - `owned` — rooms you own
            - `shared` — rooms shared with you
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
          description: Search by room title.
        - name: expand
          in: query
          required: false
          schema:
            anyOf:
              - type: array
                items:
                  $ref: '#/components/schemas/RoomExpand'
              - type: 'null'
            title: Expand
          description: >-
            Expand related resources inline. Supported values: `documents`,
            `meetings`.
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
          description: Pagination cursor from a previous response's `next_cursor`.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 25
            title: Limit
          description: Number of results per page (1–100).
      responses:
        '200':
          description: A paginated list of rooms.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_Room_'
              example:
                data:
                  - id: room_abc123
                    title: Engineering standups
                    created_at: '2025-01-01T00:00:00Z'
                    updated_at: '2025-01-15T10:30:00Z'
                    meeting_count: 42
                    meetings:
                      - id: mtg_abc123
                        title: Weekly standup
                        status: completed
                        source: google_meet
                        start_time: '2025-01-15T10:00:00Z'
                        duration: 1800
                next_cursor: null
                has_more: false
        '401':
          description: Authentication required.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RoomScope:
      type: string
      enum:
        - owned
        - shared
        - all
      title: RoomScope
    RoomExpand:
      type: string
      enum:
        - documents
        - meetings
      title: RoomExpand
    PaginatedResponse_Room_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Room'
          type: array
          title: Data
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
          description: Cursor for the next page. `null` if no more results.
        has_more:
          type: boolean
          title: Has More
          description: Whether more results exist beyond this page.
      type: object
      required:
        - data
        - next_cursor
        - has_more
      title: PaginatedResponse[Room]
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: not_found
            message:
              type: string
              example: Resource not found
            details:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
          required:
            - code
            - message
      required:
        - error
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Room:
      properties:
        id:
          type: string
          title: Id
          description: Room ID.
          example: room_abc123
        title:
          type: string
          title: Title
          description: Room title.
          example: Engineering standups
        created_at:
          type: string
          format: date-time
          title: Created At
          description: ISO 8601 timestamp.
          example: '2025-01-01T00:00:00Z'
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: ISO 8601 timestamp.
          example: '2025-01-15T10:30:00Z'
        meeting_count:
          type: integer
          title: Meeting Count
          description: Number of meetings in this room.
          example: 42
        documents:
          items:
            $ref: '#/components/schemas/Document'
          type: array
          title: Documents
          description: Only present when `expand=documents` is requested.
        meetings:
          items:
            $ref: '#/components/schemas/MeetingPreview'
          type: array
          title: Meetings
          description: Only present when `expand=meetings` is requested.
      type: object
      required:
        - id
        - title
        - created_at
        - updated_at
        - meeting_count
      title: Room
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    Document:
      properties:
        id:
          type: string
          title: Id
          example: doc_abc123
        title:
          type: string
          title: Title
          example: Meeting summary
        created_at:
          type: string
          format: date-time
          title: Created At
          example: '2025-01-15T10:35:00Z'
      type: object
      required:
        - id
        - title
        - created_at
      title: Document
    MeetingPreview:
      properties:
        id:
          type: string
          title: Id
          example: mtg_abc123
        title:
          type: string
          title: Title
          example: Weekly standup
        status:
          $ref: '#/components/schemas/MeetingStatus'
        source:
          anyOf:
            - $ref: '#/components/schemas/MeetingSource'
            - type: 'null'
          example: google_meet
        start_time:
          type: string
          format: date-time
          title: Start Time
          example: '2025-01-15T10:00:00Z'
        duration:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration
          example: 1800
      type: object
      required:
        - id
        - title
        - status
        - source
        - start_time
        - duration
      title: MeetingPreview
    MeetingStatus:
      type: string
      enum:
        - completed
        - processing
        - scheduled
        - failed
      title: MeetingStatus
    MeetingSource:
      type: string
      enum:
        - google_meet
        - zoom
        - teams
        - slack
        - whatsapp
        - phone
        - upload
        - desktop
      title: MeetingSource
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: >-
        API token from your [Timeless
        dashboard](https://my.timeless.day/api-token).

````