Skip to main content
GET
/
calls
/
{id}
/
Get Call
curl --request GET \
  --url https://data.craftflow.co/api/v1/calls/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f6a7b8c9-d0e1-2345-fabc-678901234567",
    "start_time": "2025-07-02T14:00:00Z",
    "end_time": "2025-07-02T14:05:00Z",
    "audio_duration_seconds": 300,
    "direction": "inbound",
    "source": "integration",
    "sentiment": "positive",
    "score": 0.9,
    "summary": "Customer called about HVAC repair.",
    "is_qualified": true,
    "is_booked": true,
    "is_excused": false,
    "excused_at": null,
    "excuse_reason": null,
    "is_cancellation": false,
    "has_cancellation": false,
    "user": {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "full_name": "Jane Smith"
    },
    "created_at": "2025-07-02T14:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key, prefixed with cf_live_.

Path Parameters

id
string<uuid>
required

The unique identifier of the call.

Response

A single call.
data
object
required