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

# Get a Meeting

> Gets a single meeting by its `meeting_id`. The detail response includes the AI-generated summary, a presigned video URL, and the full transcript with speaker attribution.



## OpenAPI

````yaml https://api.monaco.com/openapi.json get /v1/meetings/{meeting_id}
openapi: 3.1.0
info:
  title: Monaco Public API
  description: Public API for Monaco
  version: 1.0.0
servers:
  - url: https://api.monaco.com
security: []
paths:
  /v1/meetings/{meeting_id}:
    get:
      tags:
        - Meetings
      summary: Get a Meeting
      description: >-
        Gets a single meeting by its `meeting_id`. The detail response includes
        the AI-generated summary, a presigned video URL, and the full transcript
        with speaker attribution.
      operationId: get_meeting
      parameters:
        - name: meeting_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Meeting Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicItemResponse_MeetingDetailResponse_'
              example:
                data:
                  id: mtg_abc123
                  account_id: acc_abc123
                  opportunity_id: opp_abc123
                  title: Discovery Call
                  description: Initial discovery call with Acme
                  start_time: '2026-03-01T10:00:00Z'
                  end_time: '2026-03-01T10:30:00Z'
                  meeting_platform: Zoom
                  meeting_url: https://zoom.us/j/123456789
                  organizer:
                    email: jane@acme.com
                    display_name: Jane Smith
                  attendees:
                    - email: john@acme.com
                      display_name: John Doe
                      response_status: accepted
                  next_actions:
                    - Send pricing proposal by Friday
                    - Schedule technical deep-dive
                  meeting_summary: >-
                    Discovery call with Acme. Strong interest in enterprise
                    tier, budget confirmed for Q3.
                  video_url: https://monaco-recordings.s3.amazonaws.com/...
                  transcript:
                    - speaker: Jane Smith
                      language: en
                      words:
                        - text: Thanks
                          start_timestamp: 0.5
                          end_timestamp: 0.9
                        - text: everyone
                          start_timestamp: 1
                          end_timestamp: 1.5
                  created_at: '2026-03-01T09:00:00Z'
                  updated_at: '2026-03-01T09:30:00Z'
                meta:
                  timestamp: '2026-04-21T12:00:00Z'
        4XX:
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorResponse'
components:
  schemas:
    PublicItemResponse_MeetingDetailResponse_:
      properties:
        data:
          $ref: '#/components/schemas/MeetingDetailResponse'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      type: object
      required:
        - data
      title: PublicItemResponse[MeetingDetailResponse]
    PublicErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
      type: object
      required:
        - error
      title: PublicErrorResponse
    MeetingDetailResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier for the meeting
          examples:
            - mtg_abc123
        account_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Account Id
          description: ID of the associated account
          examples:
            - acc_abc123
        opportunity_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Opportunity Id
          description: ID of the associated opportunity
          examples:
            - opp_abc123
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
          description: Meeting title from calendar event
          examples:
            - Discovery Call
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Meeting description
          examples:
            - Initial discovery call with Acme
        start_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Start Time
          description: Meeting start time (ISO 8601)
          examples:
            - '2026-03-01T10:00:00Z'
        end_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: End Time
          description: Meeting end time (ISO 8601)
          examples:
            - '2026-03-01T10:30:00Z'
        occurred_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Occurred At
          description: >-
            When the meeting actually occurred: recording start time of the
            completed conversation (ISO 8601). Null for meetings that were never
            recorded, including future and declined calendar events.
          examples:
            - '2026-03-01T10:02:14Z'
        meeting_platform:
          anyOf:
            - type: string
            - type: 'null'
          title: Meeting Platform
          description: Video conferencing platform
          examples:
            - Zoom
        meeting_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Meeting Url
          description: URL to join the meeting
        organizer:
          anyOf:
            - $ref: '#/components/schemas/MeetingOrganizerInfo'
            - type: 'null'
          description: Meeting organizer
        attendees:
          items:
            $ref: '#/components/schemas/MeetingAttendeeInfo'
          type: array
          title: Attendees
          description: List of meeting attendees
        next_actions:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Next Actions
          description: AI-generated action items from the meeting
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
          description: When the meeting was created in Monaco
          examples:
            - '2026-03-01T09:00:00Z'
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
          description: When the meeting was last updated in Monaco
          examples:
            - '2026-03-01T09:30:00Z'
        meeting_summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Meeting Summary
          description: AI-generated meeting summary
        video_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Video Url
          description: Presigned URL to the meeting recording video
        transcript:
          anyOf:
            - items:
                $ref: '#/components/schemas/TranscriptSegment'
              type: array
            - type: 'null'
          title: Transcript
          description: Meeting transcript segments with speaker attribution
      additionalProperties: true
      type: object
      required:
        - id
      title: MeetingDetailResponse
    ResponseMeta:
      properties:
        timestamp:
          type: string
          format: date-time
          title: Timestamp
          description: Server timestamp of the response
      type: object
      title: ResponseMeta
    ErrorDetail:
      properties:
        code:
          type: string
          title: Code
          description: Machine-readable error code
          examples:
            - not_found
        message:
          type: string
          title: Message
          description: Human-readable error message
          examples:
            - Resource not found
      type: object
      required:
        - code
        - message
      title: ErrorDetail
    MeetingOrganizerInfo:
      properties:
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: Email address of the organizer
          examples:
            - jane@acme.com
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
          description: Display name of the organizer
          examples:
            - Jane Smith
      type: object
      title: MeetingOrganizerInfo
    MeetingAttendeeInfo:
      properties:
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: Email address of the attendee
          examples:
            - john@acme.com
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
          description: Display name of the attendee
          examples:
            - John Doe
        response_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Response Status
          description: RSVP response status
          examples:
            - accepted
      type: object
      title: MeetingAttendeeInfo
    TranscriptSegment:
      properties:
        speaker:
          type: string
          title: Speaker
          description: Name of the speaker
        language:
          type: string
          title: Language
          description: Language code of the segment
        words:
          items:
            $ref: '#/components/schemas/TranscriptWord'
          type: array
          title: Words
          description: Words in this segment
      type: object
      required:
        - speaker
        - language
      title: TranscriptSegment
    TranscriptWord:
      properties:
        text:
          type: string
          title: Text
          description: The transcribed word
        start_timestamp:
          type: number
          title: Start Timestamp
          description: Start time in seconds
        end_timestamp:
          type: number
          title: End Timestamp
          description: End time in seconds
      type: object
      required:
        - text
        - start_timestamp
        - end_timestamp
      title: TranscriptWord

````