# Conversation Topics and Keywords

The Meetra AI API provides endpoints for retrieving information about topics discussed in a processed meeting recording.&#x20;

**Endpoint:**&#x20;

`/single-feature-api/meeting/topics`

**HTTP Method:** GET

#### Parameters

| Parameter        | Type    | Description                                               |
| ---------------- | ------- | --------------------------------------------------------- |
| `Authorization`  | string  | Bearer token for authentication.                          |
| `file-hash`      | string  | Hash of the meeting recording file.                       |
| `period_seconds` | integer | Length of the period in seconds (optional, default: 300). |

#### Request

```http
GET /single-feature-api/meeting/topics?file-hash=<file-hash>&period_seconds=<period_seconds>
Authorization: Bearer <JWT_token>
```

#### 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                              |
| -------- | ----- | ---------------------------------------- |
| `topics` | array | List of topics discussed in the meeting. |

**TopicDetails (object)**

| Property | Type    | Description                                      |
| -------- | ------- | ------------------------------------------------ |
| `topic`  | string  | Name of the topic.                               |
| `start`  | integer | Start time of the topic segment in milliseconds. |
| `end`    | integer | End time of the topic segment in milliseconds.   |

**Example Response**

```json
{
  "topics": [
    {
      "end": 300000,
      "start": 0,
      "topic": "topic name"
    }
  ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.meetra.ai/meetra-ai-conversation-intelligence-api-reference/conversation-topics-and-keywords.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
