Skip to main content
GET
/
recordings
/
{id}
/
Get Field Recording
curl --request GET \
  --url https://data.craftflow.co/api/v1/recordings/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "e5f6a7b8-c9d0-1234-efab-567890123456",
    "name": "HVAC Install - 123 Main St",
    "start_time": "2025-07-01T09:00:00Z",
    "end_time": "2025-07-01T09:45:00Z",
    "audio_duration_seconds": 2700,
    "score": 0.85,
    "user": {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "full_name": "John Doe"
    },
    "created_at": "2025-07-01T09:00:00Z",
    "custom_fields": [
      {
        "name": "Customer Interest",
        "slug": "customer-interest",
        "value_type": "single_select",
        "value": "High",
        "source": "ai"
      },
      {
        "name": "Quoted Price",
        "slug": "quoted-price",
        "value_type": "number",
        "value": 12500,
        "source": "manual"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Your API key, prefixed with cf_live_.

Path Parameters

id
string<uuid>
required

The unique identifier of the field recording.

Response

A single field recording.
data
object
required