# 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.
