Conversation Topics and Keywords
Retrieve the list of topics discussed in a processed meeting.
The Meetra AI API provides endpoints for retrieving information about topics discussed in a processed meeting recording.
Endpoint:
/single-feature-api/meeting/topics
HTTP Method: GET
Parameters
Parameter | Type | Description |
---|---|---|
| string | Bearer token for authentication. |
| string | Hash of the meeting recording file. |
| integer | Length of the period in seconds (optional, default: 300). |
Request
Responses
HTTP Status Code | Description | Schema |
---|---|---|
200 | Successful retrieval of topics for the meeting. | TopicsModel |
400 | Bad request. | ErrorResponse |
401 | Unauthorized. | ErrorResponse |
404 | Meeting not found. | ErrorResponse |
500 | Internal server error. | ErrorResponse |
TopicsModel (schema)
Property | Type | Description |
---|---|---|
| array | List of topics discussed in the meeting. |
TopicDetails (object)
Property | Type | Description |
---|---|---|
| string | Name of the topic. |
| integer | Start time of the topic segment in milliseconds. |
| integer | End time of the topic segment in milliseconds. |
Example Response
Last updated