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

> Returns a paginated list of upcoming meetings from the authenticated user's connected calendar, ordered by start time. These are scheduled calendar events that have not yet started — distinct from the recorded meetings returned by `GET /meetings`.



## OpenAPI

````yaml GET /meetings/upcoming
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.
  - name: settings
    description: Manage account-level settings such as AI note-taker automation.
paths:
  /meetings/upcoming:
    get:
      tags:
        - meetings
      summary: List upcoming meetings
      description: >-
        Returns a paginated list of upcoming meetings from the authenticated
        user's connected calendar, ordered by start time. These are scheduled
        calendar events that have not yet started — distinct from the recorded
        meetings returned by `GET /meetings`.
      operationId: get_upcoming_meetings_v1_meetings_upcoming_get
      parameters:
        - name: within_hours
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                maximum: 8760
                minimum: 1
              - type: 'null'
            title: Within Hours
          description: >-
            Only return events starting within this many hours from now
            (1–8760). Omit for no upper bound.
        - 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 upcoming meetings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_UpcomingMeeting_'
              example:
                data:
                  - id: evt_abc123
                    title: Product roadmap review
                    start_time: '2025-01-20T15:00:00Z'
                    end_time: '2025-01-20T16:00:00Z'
                    meeting_url: https://meet.google.com/abc-defg-hij
                    participants:
                      - name: Alice Johnson
                        email: alice@example.com
                        organizer: true
                        response_status: accepted
                      - name: Bob Smith
                        email: bob@example.com
                        organizer: false
                        response_status: needsAction
                    organizer:
                      name: Alice Johnson
                      email: alice@example.com
                      organizer: true
                      response_status: accepted
                    created_at: '2025-01-15T09:30: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:
    PaginatedResponse_UpcomingMeeting_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/UpcomingMeeting'
          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[UpcomingMeeting]
    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
    UpcomingMeeting:
      properties:
        id:
          type: string
          title: Id
          description: Calendar event ID.
          example: evt_abc123
        title:
          type: string
          title: Title
          description: Event title.
          example: Product roadmap review
        start_time:
          type: string
          format: date-time
          title: Start Time
          description: Scheduled start time (ISO 8601).
          example: '2025-01-20T15:00:00Z'
        end_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: End Time
          description: >-
            Scheduled end time (ISO 8601). May be `null` if the event has no
            defined end.
          example: '2025-01-20T16:00:00Z'
        meeting_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Meeting Url
          description: Join URL for the video call, or `null` if the event has none.
          example: https://meet.google.com/abc-defg-hij
        participants:
          items:
            $ref: '#/components/schemas/EventParticipant'
          type: array
          title: Participants
          description: Invited participants.
        organizer:
          anyOf:
            - $ref: '#/components/schemas/EventParticipant'
            - type: 'null'
          description: The event organizer, or `null` if unknown.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the calendar event was created (ISO 8601).
          example: '2025-01-15T09:30:00Z'
      type: object
      required:
        - id
        - title
        - start_time
        - end_time
        - meeting_url
        - participants
        - organizer
        - created_at
      title: UpcomingMeeting
    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
    EventParticipant:
      properties:
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Participant name, if known.
          example: Bob Smith
        email:
          type: string
          title: Email
          description: Email address.
          example: bob@example.com
        organizer:
          type: boolean
          title: Organizer
          description: Whether this participant is the event organizer.
          example: false
        response_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Response Status
          description: >-
            The participant's RSVP status (e.g., `accepted`, `declined`,
            `tentative`, `needsAction`).
          example: accepted
      type: object
      required:
        - name
        - email
        - organizer
        - response_status
      title: EventParticipant
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: >-
        API token from your [Timeless
        dashboard](https://my.timeless.day/api-token).

````