API REFERENCE

Call Logs

Access your call history, transcripts, and recordings. This API allows you to track the performance of your campaigns, analyze AI interactions, and retrieve detailed logs of every conversation.

List all calls

GEThttp://callcamp.ai/api/calls

Returns a paginated list of all calls. You can filter by campaignUuid, status, or date range.

Query Parameters

ParameterTypeDescription
campaignUuid stringFilter calls by campaign.
status stringFilter by status: completed, failed, busy, no-answer.
search stringSearch by phone number, campaign name or record name.
startDate stringFilter by start date (YYYY-MM-DD).
endDate stringFilter by end date (YYYY-MM-DD).
page numberPage number for pagination.
limit numberItems per page.

Responses

JSON
{
  "calls": [
    {
      "uuid": "call_9z8y7x6w5v4u3t2s1r0q",
      "callOrderUuid": "order_12345",
      "status": "completed",
      "toPhoneNumber": "+1234567890",
      "fromPhoneNumber": "+16054440129",
      "callDurationSeconds": 145,
      "callStartTime": "2026-04-20T15:00:00Z",
      "price": 0.45,
      "currencyCode": "USD",
      "recordingUrl": "https://storage.callcamp.com/recordings/call_12345.mp3",
      "summary": "Customer expressed interest in the promotion.",
      "createdAt": "2026-04-20T15:00:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 10,
  "totalPages": 1,
  "totalDuration": 145,
  "totalPrice": 0.45
}

Get call details

GEThttp://callcamp.ai/api/calls/{uuid}

Retrieves the full details of a specific call, including the transcript, recording URL (if available), and AI analysis summary.

Responses

JSON
{
  "uuid": "call_9z8y7x6w5v4u3t2s1r0q",
  "callOrderUuid": "order_12345",
  "status": "completed",
  "toPhoneNumber": "+1234567890",
  "fromPhoneNumber": "+16054440129",
  "callDurationSeconds": 145,
  "callStartTime": "2026-04-20T15:00:00Z",
  "price": 0.45,
  "currencyCode": "USD",
  "recordingUrl": "https://storage.callcamp.com/recordings/call_12345.mp3",
  "summary": "Customer expressed interest in the promotion.",
  "createdAt": "2026-04-20T15:00:00Z"
}