---
title: "Get Lead By Call"
method: GET
path: "/leads/by-call/{call_id}"
tags: ["Leads"]
---

# Get Lead By Call

`GET /leads/by-call/{call_id}`

Get a lead by call ID.

Returns the lead associated with a specific call, or 404 if no lead exists for that call.

## Path parameters

- `call_id` string, uuid, required

## Response `200`

Successful Response

- LeadWithCaseResponse — Lead response with case details included.
  - `lead_id` string, uuid, nullable
  - `outbound_lead_id` string, uuid, nullable
  - `customer_id` string, uuid, required
  - `call_id` string, uuid, nullable
  - `conversation_id` string, uuid, nullable
  - `form_session_id` string, uuid, nullable
  - `case_id` string, uuid, nullable
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `phone_number` string, nullable
  - `email` string, nullable
  - `client_status` string, required
  - `is_qualified` boolean
  - `qualification_summary` string, nullable
  - `qualification_details` QualificationQA[], nullable
    - `question` string, required — The qualification question that was asked or evaluated
    - `answer` string, required — The caller's answer or the evaluated response from the transcript
  - `lead_score` string, nullable
  - `lead_score_reasoning` string, nullable
  - `custom_score_output` object, nullable
  - `inquiry_reason` string, nullable
  - `matter_name` string, nullable
  - `subject_line` string, nullable
  - `lead_source` string, nullable
  - `notification_emails_sent` boolean
  - `notification_sms_sent` boolean
  - `skip_notifications` boolean
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, nullable
  - `case_title` string, nullable
  - `call_created_at` string, date-time, nullable
  - `call_direction` string, nullable
  - `is_test` boolean
  - `pp_contact_guid` string, nullable
  - `pp_matter_guid` string, nullable
  - `pp_matter_name` string, nullable
  - `info_request_sms_sent` boolean

## Other responses

- `422` — Validation Error

---

[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/b642b91e0a5c/schema)
