> For the complete documentation index, see [llms.txt](https://docs.meetra.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.meetra.ai/meetra-ai-conversation-intelligence-api-reference/individual-speaker-balance.md).

# Individual Speaker Balance

#### URL: `/speakers-balance`

#### Method: `GET`

#### Parameters

* **Authorization**: Bearer token *(header)*
* **file-hash**: Hash of the meeting recording file *(query)*

#### Responses

* **200 OK**: List of speakers successfully retrieved
  * Example:

    ```json
    {
      "speakers": [
        {
          "meeting_speaking_percentage": 0.0,
          "id": "string"
        }
      ]
    }
    ```
* **400 Bad Request**: Invalid request
  * Example:

    ```json
    {
      "message": "Bad request"
    }
    ```
* **401 Unauthorized**: Unauthorized access
  * Example:

    ```json
    {
      "message": "Unauthorized"
    }
    ```
* **404 Not Found**: Meeting not found
  * Example:

    ```json
    {
      "message": "Meeting not found"
    }
    ```

By utilizing this endpoint, you can obtain valuable information about the distribution of speaking percentages among the different speakers in a processed meeting.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/individual-speaker-balance.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.
