---
title: "Get Screening Call Debug"
method: GET
path: "/developer/screening-call-debug"
tags: ["Developer", "Developer - Debug"]
---

# Get Screening Call Debug

`GET /developer/screening-call-debug`

Get debug information about screening calls for the current customer.

This endpoint is restricted to developer users only.
Returns the same screening calls that are evaluated when determining if the
screener is busy, along with their current Twilio status.

This helps debug issues where calls are incorrectly showing as in progress.

## Response `200`

Successful Response

- ScreeningCallDebugResponse — Response with screening call debug information
  - `is_screener_busy` boolean, required — Whether the screener is considered busy based on the evaluation
  - `disable_active_call_check` boolean, required — Whether active call checking is disabled for this customer
  - `active_call_statuses` string[], required — Twilio statuses considered 'active'
  - `screenings` ScreeningCallDebugItem[] — List of screening calls being evaluated
    - `screening_id` string, uuid, required — Screening record ID
    - `call_id` string, uuid, required — Associated call ID
    - `screening_call_sid` string, nullable — Twilio call SID for the screening call
    - `screening_status` string, required — Screening status in our database (pending, accepted, etc.)
    - `twilio_status` string, nullable — Current Twilio call status
    - `twilio_duration` integer, nullable — Call duration in seconds (if completed)
    - `twilio_start_time` string, nullable — Call start time from Twilio
    - `twilio_end_time` string, nullable — Call end time from Twilio
    - `twilio_error` string, nullable — Error message if Twilio lookup failed
    - `created_at` string, required — Screening record creation time
    - `bridged_at` string, nullable — Time when call was bridged (if accepted)
    - `category` string, required — Category: 'pending' or 'recent_accepted'

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
