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

Questions Asked

Retrieve the list of questions asked by speakers in a processed meeting.

The Meetra AI API provides endpoints for retrieving the list of questions asked by speakers in a processed meeting recording. This documentation specifically covers the endpoints related to questions asked.

Endpoint

/single-feature-api/meeting/questions-asked

HTTP Method: GET

Parameters

  • Authorization (header): Bearer token required for authentication.

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

Responses

HTTP Status Code
Description
Schema

200

Meeting questions asked successfully retrieved.

Questions_model

400

Bad request.

UploadError400

401

Unauthorized.

UploadError401

404

Meeting not found.

-

Questions_model (schema)

Property
Type
Description

questions_asked

object

Questions asked by each spokesperson in the meeting.

Example Request

GET /single-feature-api/meeting/questions-asked?file-hash=abcdef1234567890
Authorization: Bearer <JWT_token>

Example Response

{
  "questions_asked": {
    "11eb454c-68d4-40f0-b965-0074bc0e688f": ["Question asked by speaker 11eb454c-68d4-40f0-b965-0074bc0e688f"],
    "582fc671-5b8b-498d-a09e-bfb53145b05a": ["Question asked by speaker 582fc671-5b8b-498d-a09e-bfb53145b05a"],
    "637f9221-ab4a-46bb-979e-776ba541a407": ["Question asked by speaker 637f9221-ab4a-46bb-979e-776ba541a407"],
    "b01792fb-5097-46d7-b458-1d559a9b4978": ["Question asked by speaker b01792fb-5097-46d7-b458-1d559a9b4978"]
  }
}

Error Responses

HTTP Status Code
Description
Schema

400

Bad request.

UploadError400

401

Unauthorized.

UploadError401

404

Meeting not found.

-

UploadError400 (schema)

Property
Type
Description

message

string

Error message.

UploadError401 (schema)

Property
Type
Description

message

string

Error message.

PreviousConversation Topics and KeywordsNextConversation Transcript

Last updated 1 year ago