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

# Get Call Detail

> Get detailed information for a specific voice call including session details, conversations, and processed actions.

### Authorizations

<ParamField header="Authorization" type="string" required>
  Enter your ContactSwing JWT Bearer token.
</ParamField>

### Path Parameters

<ParamField path="call_id" type="string" required>
  Session ID of the voice call from ContactSwing dashboard.
</ParamField>

### Response

**200 OK** - Call detail retrieved successfully

<ResponseField name="ctx_id" type="string">
  Request context ID
</ResponseField>

<ResponseField name="data" type="object">
  Call details including:
  <ResponseField name="id" type="string">Call ID</ResponseField>
  <ResponseField name="session_details" type="object">Complete session metadata</ResponseField>
  <ResponseField name="conversations" type="array">All conversation exchanges</ResponseField>
  <ResponseField name="processed_actions" type="array">Actions triggered during call</ResponseField>
</ResponseField>

<ResponseField name="message" type="string">
  "Request processed successfully"
</ResponseField>

**400 Bad Request** - Call ID is required

**401 Unauthorized** - Invalid or missing token

**404 Not Found** - Call not found

**429 Too Many Requests** - Rate limit exceeded (30 calls per minute)

**500 Internal Server Error** - Server error

### Example Request

```bash theme={null}
curl 'https://prod-contactswing-fastapi-962560522883.us-central1.run.app/v2/_calls/YOUR_CALL_ID' \
  -H 'Authorization: Bearer YOUR_JWT_TOKEN'
```
