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

> Returns a paginated list of meetings accessible to the authenticated user. Supports filtering by status, date range, participants, company, room, and more.



## OpenAPI

````yaml GET /meetings
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:
  /meetings:
    get:
      tags:
        - meetings
      summary: List meetings
      description: >-
        Returns a paginated list of meetings accessible to the authenticated
        user. Supports filtering by status, date range, participants, company,
        room, and more.
      operationId: get_meetings_v1_meetings_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 meeting IDs. Pass multiple values to fetch
            specific meetings: `?id=mtg_abc&id=mtg_def`
        - name: scope
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/MeetingScope'
            default: all
          description: |-
            Filter by ownership scope.
            - `all` — all accessible meetings
            - `owned` — meetings you hosted
            - `shared` — meetings shared with you
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/MeetingStatus'
              - type: 'null'
            title: Status
          description: >-
            Filter by meeting status: `completed`, `processing`, `scheduled`, or
            `failed`.
        - name: start_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            title: Start Date
          description: >-
            Filter meetings starting on or after this date. Format:
            `YYYY-MM-DD`.
          example: '2025-01-01'
        - name: end_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            title: End Date
          description: >-
            Filter meetings starting on or before this date. Format:
            `YYYY-MM-DD`.
          example: '2025-01-31'
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
          description: Search by meeting title (substring match).
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Q
          description: >-
            Semantic search query. Finds meetings whose content is relevant to
            the query, not just title matches.
        - name: participant
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Participant
          description: Filter by participant name or email.
        - name: company
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Company
          description: Filter by company name or domain.
        - name: room_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Room Id
          description: Filter by room ID (e.g., `room_abc123`).
        - name: expand
          in: query
          required: false
          schema:
            anyOf:
              - type: array
                items:
                  $ref: '#/components/schemas/MeetingExpand'
              - type: 'null'
            title: Expand
          description: 'Expand related resources inline. Supported values: `documents`.'
        - 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 meetings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_Meeting_'
              example:
                data:
                  - id: mtg_abc123
                    title: Weekly standup
                    status: completed
                    source: google_meet
                    start_time: '2025-01-15T10:00:00Z'
                    end_time: '2025-01-15T10:30:00Z'
                    duration: 1800
                    host:
                      id: usr_def456
                      name: Alice Johnson
                      email: alice@example.com
                    participants:
                      - name: Bob Smith
                        email: bob@example.com
                        title: Engineer
                        company: Acme Corp
                    created_at: '2025-01-15T10:00:00Z'
                next_cursor: eyJjcmVhdGVkX2F0Ijo...
                has_more: true
        '401':
          description: Authentication required.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error:
                  code: unauthorized
                  message: Authentication required
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    MeetingScope:
      type: string
      enum:
        - owned
        - shared
        - all
      title: MeetingScope
    MeetingStatus:
      type: string
      enum:
        - completed
        - processing
        - scheduled
        - failed
      title: MeetingStatus
    MeetingExpand:
      type: string
      enum:
        - documents
      title: MeetingExpand
    PaginatedResponse_Meeting_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Meeting'
          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[Meeting]
    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
    Meeting:
      properties:
        id:
          type: string
          title: Id
          description: Meeting ID.
          example: mtg_abc123
        title:
          type: string
          title: Title
          description: Meeting title.
          example: Weekly standup
        status:
          $ref: '#/components/schemas/MeetingStatus'
          description: Meeting status.
        source:
          anyOf:
            - $ref: '#/components/schemas/MeetingSource'
            - type: 'null'
          description: Meeting source.
          example: google_meet
        start_time:
          type: string
          format: date-time
          title: Start Time
          description: ISO 8601 timestamp.
          example: '2025-01-15T10:00:00Z'
        end_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: End Time
          description: ISO 8601 timestamp.
          example: '2025-01-15T10:30:00Z'
        duration:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration
          description: Duration in seconds.
          example: 1800
        host:
          anyOf:
            - $ref: '#/components/schemas/UserSchema'
            - type: 'null'
          description: Meeting host.
        participants:
          items:
            $ref: '#/components/schemas/Participant'
          type: array
          title: Participants
          description: Meeting participants.
        documents:
          items:
            $ref: '#/components/schemas/Document'
          type: array
          title: Documents
          description: Only present when `expand=documents` is requested.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: ISO 8601 timestamp.
          example: '2025-01-15T10:00:00Z'
      type: object
      required:
        - id
        - title
        - status
        - start_time
        - participants
        - created_at
      title: Meeting
    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
    MeetingSource:
      type: string
      enum:
        - google_meet
        - zoom
        - teams
        - slack
        - whatsapp
        - phone
        - upload
        - desktop
      title: MeetingSource
    UserSchema:
      properties:
        id:
          type: string
          title: Id
          description: User ID.
          example: usr_def456
        name:
          type: string
          title: Name
          description: Display name.
          example: Alice Johnson
        email:
          type: string
          title: Email
          description: Email address.
          example: alice@example.com
      type: object
      required:
        - id
        - name
        - email
      title: UserSchema
    Participant:
      properties:
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Participant name.
          example: Bob Smith
        email:
          type: string
          title: Email
          description: Email address.
          example: bob@example.com
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
          description: Job title.
          example: Engineer
        company:
          anyOf:
            - type: string
            - type: 'null'
          title: Company
          description: Company name.
          example: Acme Corp
      type: object
      required:
        - name
        - email
        - title
        - company
      title: Participant
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: >-
        API token from your [Timeless
        dashboard](https://my.timeless.day/api-token).

````