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
  • Response
  • Error Handling
  1. Meetra AI Conversation Intelligence API Reference

Speaker Detection

Returns a list of speakers in a meeting

This endpoint accepts GET requests with no request parameters.

Endpoint

GET /api/meeting/speakers HTTP/1.1

Response

The response payload is a JSON object that contains a speakers array. Each element of the speakers array is an object with two properties: alias and id.

Response Properties

Property
Type
Description

alias

string

The alias of the speaker.

id

string

The unique identifier of the speaker.

Example Response

{
  "speakers": [
    {
      "alias": "Daniel",
      "id": "1c2ee2da-e2f6-433d-b554-248707c2491c"
    },
    {
      "alias": "Adrian",
      "id": "2d3fe3da-f3e6-444d-b555-349707b2492b"
    }
  ]
}

Error Handling

If an error occurs while processing the request, the API will return a response with a status code indicating the error type and a JSON object containing an error property with a description of the error.

Example Error Response

{
  "error": "Invalid request format."
}

Note: This documentation is for the /api/meeting/speakers endpoint only. For details on other endpoints, please refer to their respective documentation.

PreviousUpload Audio / Video materialNextRename Speaker

Last updated 1 year ago