> ## Documentation Index
> Fetch the complete documentation index at: https://docs.toughtongueai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Analyze Session

> Trigger AI analysis for a completed session

<ParamField body="session_id" type="string" required>
  Session ID to analyze
</ParamField>

<RequestExample>
  ```json theme={null}
  {
    "session_id": "session_abc123"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "session_id": "session_abc123",
    "analysis": {
      "overall_score": 85,
      "strengths": [
        "Strong opening statement",
        "Good active listening"
      ],
      "improvements": [
        "Could handle objections more confidently"
      ]
    }
  }
  ```
</ResponseExample>
