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

# Retrieve Batch Analysis

> Retrieves the analyses for a specific batch of calls, including details of each call’s analysis.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="batch_id" type="string" required={true}>
  The unique identifier for the call batch. Returned in the response when creating a batch, or when listing all batches.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Whether the request was successful or not. Possible values are success and error.
</ResponseField>

<ResponseField name="message" type="string">
  An error message or confirmation that the request was successful.
</ResponseField>

<ResponseField name="analysis" type="array">
  An array of analysis objects, each corresponding to a call within the batch.

  Each analysis object includes:

  * call\_id
  * batch\_id
  * goal
  * answers - the results of the AI analysis
  * questions - the original questions asked by the AI
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "status": "success",
    "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
  }

  ```
</ResponseExample>
