> ## 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.

# Stop Active Call

> End an active phone call by call_id.

### Headers

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

### Path Parameters

<ParamField path="call_id" type="string" required={true}>
  The unique identifier for the call you want to end.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Can be `success` or `error`.
</ResponseField>

<ResponseField name="message" type="string">
  If the status is `success`, the message will say “Call ended successfully.” Otherwise, if the status is `error`, the message will say “SID not found for the given c\_id.” or “Internal server error.”
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "status": "success",
    "message": "Call ended successfully."
  }

  ```
</ResponseExample>
