# Interaction Strength Between Speakers

The Meetra AI API provides endpoints for analyzing and extracting conversation interaction strength between pairs of speakers.&#x20;

**Endpoint**&#x20;

`/single-feature-api/meeting/meeting-interactions`

**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 interactions successfully retrieved. | Interactions   |
| 400              | Bad request.                                 | UploadError400 |
| 401              | Unauthorized.                                | UploadError401 |
| 404              | Meeting not found.                           | -              |

**Interactions (schema)**

| Property | Type  | Description                |
| -------- | ----- | -------------------------- |
| `nodes`  | array | List of interaction nodes. |

**Node (schema)**

| Property  | Type   | Description                                        |
| --------- | ------ | -------------------------------------------------- |
| `between` | array  | Speaker IDs between whom the interaction occurred. |
| `value`   | number | The value of the interaction score.                |

**Example Request**

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

**Example Response**

```json
{
  "nodes": [
    {
      "between": ["8b3c1e7b-64da-4320-b699-0dc3cff03aae", "1c2ee2da-e2f6-433d-b554-248707c2491c"],
      "value": 100
    },
    {
      "between": ["8b3c1e7b-64da-4320-b699-0dc3cff03aae", "7369d5a6-5f13-47af-8e50-d82aeb0715e0"],
      "value": 75
    },
    ...
  ]
}
```

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


---

# 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/interaction-strength-between-speakers.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.
