Meetra AI
  • Welcome to Meetra AI API
  • Meetra AI Conversation Intelligence API Building Blocks
  • Meetra AI Conversation Intelligence API Reference
    • User Login
    • Upload Audio / Video material
    • Speaker Detection
    • Rename Speaker
    • Speaker Balance Score
    • Topic Dynamics & Details
    • Speaker Key Points
    • Conversation and Speaker Summaries
    • Conversation Topics and Keywords
    • Questions Asked
    • Conversation Transcript
    • Conversation Dynamics
    • Conversation Emotions
    • Speaker Emotions Over Time
    • Sentiment Score
    • Conversational Energy
    • Interaction Score
    • Interaction Strength Between Speakers
    • Speaker Audio Quality
    • Individual Speaker Balance
  • Built with Meetra AI
    • 🌟NorthStar
      • Example: Meeting Quality Analysis
  • Contact Us
  • Tech Stack and Models
    • Project Structure
    • Database Structure
    • General Audio Processing Flow
    • Security Considerations
    • Open Source Usage in the Codebase
Powered by GitBook
On this page
  1. Meetra AI Conversation Intelligence API Reference

Individual Speaker Balance

This endpoint allows you to retrieve the list of speakers along with their speaking percentages in a processed meeting.

URL: /speakers-balance

Method: GET

Parameters

  • Authorization: Bearer token (header)

  • file-hash: Hash of the meeting recording file (query)

Responses

  • 200 OK: List of speakers successfully retrieved

    • Example:

      {
        "speakers": [
          {
            "meeting_speaking_percentage": 0.0,
            "id": "string"
          }
        ]
      }
  • 400 Bad Request: Invalid request

    • Example:

      {
        "message": "Bad request"
      }
  • 401 Unauthorized: Unauthorized access

    • Example:

      {
        "message": "Unauthorized"
      }
  • 404 Not Found: Meeting not found

    • Example:

      {
        "message": "Meeting not found"
      }

By utilizing this endpoint, you can obtain valuable information about the distribution of speaking percentages among the different speakers in a processed meeting.

PreviousSpeaker Audio QualityNextBuilt with Meetra AI

Last updated 1 year ago