Conversation and Speaker Summaries

Retrieve the text summarization of each spokesperson in a processed meeting.

The Meetra AI API provides endpoints for generating text summaries of each spokesperson in a processed meeting recording. This documentation specifically covers the endpoints related to text summaries.

Endpoint:

/single-feature-api/meeting/text-summaries

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 text summaries successfully retrieved.

Summary_model

400

Bad request.

UploadError400

401

Unauthorized.

UploadError401

404

Meeting not found.

-

Summary_model (schema)

Property
Type
Description

text_summary

object

Text summaries of each spokesperson in the meeting.

Example Request

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

Example Response

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.

Last updated