> ## 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 Speaker Timeline

> Fetches meeting Speaker Timeline for a specific agent by agentId.



## OpenAPI

````yaml GET /agent/{agentId}/speaker-timeline
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}/speaker-timeline:
    get:
      description: Fetches meeting Speaker Timeline for a specific agent by agentId.
      parameters:
        - name: agentId
          in: path
          description: The ID of the agent whose Speaker Timeline is being fetched
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Meeting Speaker Timeline successfully fetched for the agent
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpeakerTimelineResponse'
        '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:
    SpeakerTimelineResponse:
      type: array
      items:
        type: object
        properties:
          speaker:
            type: string
            description: Name of the speaker
          start_timestamp:
            type: number
            format: float
            description: Start time of the speech segment in seconds
            default: 0
          end_timestamp:
            type: number
            format: float
            description: End time of the speech segment in seconds
            default: 0
    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.

````