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
  • Endpoint
  • Parameters
  • Request Headers
  • Request Query Parameters
  • Responses
  • Example
  • Error Codes
  1. Meetra AI Conversation Intelligence API Reference

Speaker Balance Score

API endpoint to retrieve the speaker balance score of a processed meeting.

Endpoint

GET /single-feature-api/meeting/balance-score

Parameters

Name
Type
Description

Authorization

Header

Bearer token for authentication.

file-hash

Query

Hash of the meeting recording file.

Request Headers

The request should include the following header:

Authorization: Bearer <token>

Request Query Parameters

The request should include the following query parameter:

Name
Type
Required
Description

file-hash

string

true

Hash of the meeting recording file.

Responses

HTTP Code
Description

200

Success. Returns the meeting balance score as a JSON response.

400

Bad request. Invalid or missing parameters.

401

Unauthorized. Invalid or expired token.

404

Meeting not found.

Success Response

HTTP Code: 200

Response Body:

{
  "balance_score": 100
}

Error Responses

HTTP Code: 400

Response Body:

{
  "message": "Bad request"
}

HTTP Code: 401

Response Body:

{
  "message": "Unauthorized"
}

HTTP Code: 404

Response Body:

{
  "message": "Meeting not found"
}

Example

Request

GET /single-feature-api/meeting/balance-score?file-hash=7faa938dfb14e7ca8129a40a7e47bb02
Authorization: Bearer <token>

Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  "balance_score": 100
}

Error Codes

HTTP Code
Description

400

Bad request. Invalid or missing parameters.

401

Unauthorized. Invalid or expired token.

404

Meeting not found.

PreviousRename SpeakerNextTopic Dynamics & Details

Last updated 1 year ago