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

Speaker Emotions Over Time

This endpoint allows you to retrieve a list of 1-minute chunks with emotions per speaker from a processed meeting recording.

Endpoint: /single-feature-api/speaker-emotions-over-time

Method: GET

Parameters

  • Authorization: Bearer token (header)

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

Responses

  • 200 OK: List of fragments with emotions successfully retrieved

    Example Response:

    {
      "chunks": [
        {
          "start_ms": 0,
          "end_ms": 60000,
          "emotions": {
            "speaker_id": "string"
          }
        },
        {
          "start_ms": 60001,
          "end_ms": 120000,
          "emotions": {
            "speaker_id": "string"
          }
        }
        // More chunks...
      ]
    }
  • 400 Bad Request: Invalid request

  • 401 Unauthorized: Unauthorized access

  • 404 Not Found: Meeting not found

This endpoint provides detailed insights into the emotional dynamics of a meeting by breaking down the emotions per speaker in 1-minute chunks. The response includes the start and end times of each chunk, along with the emotions associated with each speaker during that time frame.

PreviousConversation EmotionsNextSentiment Score

Last updated 1 year ago