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

# Get Meeting Data

> Fetches meeting data for a specific agent by agentId.



## OpenAPI

````yaml GET /agent/{agentId}/meeting-data
openapi: 3.0.1
info:
  title: Meeting Agent API
  description: >-
    API for managing meeting agents, allowing them to join meetings with
    customizable configurations and fetch meeting data.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://your-hosted-ip/api/v1
security:
  - bearerAuth: []
paths:
  /agent/{agentId}/meeting-data:
    get:
      description: Fetches meeting data for a specific agent by agentId.
      parameters:
        - name: agentId
          in: path
          description: The ID of the agent whose meeting data is being fetched
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Meeting data successfully fetched for the agent
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeetingDataResponse'
        '400':
          description: Invalid request or missing agentId
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized access, invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    MeetingDataResponse:
      type: object
      properties:
        agent:
          type: object
          properties:
            agentId:
              type: string
              description: Unique identifier of the agent
            agentName:
              type: string
              description: Name of the agent
            meetingId:
              type: string
              description: Unique identifier of the meeting
            meetingUrl:
              type: string
              description: URL of the meeting
            webhookUrl:
              type: string
              description: Webhook URL for receiving meeting events
            platform:
              type: string
              description: Meeting platform (e.g. GMEET)
            transcriptionProvider:
              type: object
              properties:
                name:
                  type: string
                  description: Name of transcription provider
        recording:
          type: object
          properties:
            url:
              type: string
              description: URL of the meeting recording
            startedAt:
              type: string
              format: date-time
              description: When recording started
            completedAt:
              type: string
              format: date-time
              description: When recording completed
        participants:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
                description: Name of participant
              meetingRole:
                type: string
                description: Role of participant in the meeting
        createdAt:
          type: string
          format: date-time
          description: When the meeting data was created
        statusChanges:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                description: Status code
              sub_code:
                type: string
                nullable: true
                description: Additional status details
              createdAt:
                type: string
                format: date-time
                description: When status changed
    Error:
      type: object
      properties:
        error:
          type: integer
          description: Error code
        message:
          type: string
          description: Error message
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: apiKey
      name: Authorization
      in: header
      description: Use the format 'Token <actual token>' for authentication.

````