## End a FaceTime call `POST /end-facetime-call-api` ### Request body - `call_uuid` (string, required) — The call_uuid returned by POST /start-facetime-call-api. > **Daily dial limit** > > Each account may dial up to 40 unique destinations per calendar day (America/Los_Angeles). Redials to a number already called that day do not count. Exceeding the limit returns 429 with `error_code: FACETIME_DAILY_LIMIT_REACHED` plus `uniqueDestinationsToday` and `limit` fields. ### Status codes - **200** — Call started / status returned - **400** — Invalid pb_line_id or phone_number - **401** — Missing or invalid API key - **403** — FACETIME_NOT_ENABLED — FaceTime Audio not enabled on this account - **404** — Call not found (status/end endpoints) - **429** — Rate limit exceeded or daily FaceTime dial limit reached - **502** — Device error placing the call - **500** — Internal server error **Request — cURL** ```bash curl -X POST https://api.tryprojectblue.com/end-facetime-call-api \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "call_uuid": "ftc_8a2b1c3d4e5f6g7h" }' ``` **Response — 200 OK** ```json { "status": "OK" } ```