Evaluations

AI quality assessments of conversations and audio. Retrieve evaluation scores, transcripts, and detailed results for your analyzed interactions.

Endpoints

MethodEndpointDescriptionScope
GET/evaluationsList evaluations with filtersevaluations:read
GET/evaluations/{id}Get a single evaluation by IDevaluations:read
GET/evaluations/{id}/transcriptGet the evaluation transcriptevaluations:read
GET/evaluations/{id}/resultsGet detailed evaluation resultsevaluations:read

Query Parameters

Available filters for GET /evaluations

ParameterTypeDescription
engagementIdstringFilter by engagement ID
campaignIdstringFilter by campaign ID
callCenterIdstringFilter by call center ID
dateFromISO 8601Start date for date range filter
dateToISO 8601End date for date range filter
statestringFilter by state: Pending, Processing, Completed, Failed
sentimentstringFilter by sentiment: Positive, Neutral, Negative
isAICallbooleanFilter by AI-generated calls
pageintegerPage number (default: 1)
pageSizeintegerItems per page (default: 25, max: 100)

Evaluation Object

FieldTypeDescription
idstringUnique evaluation identifier
engagementIdstringParent engagement ID
engagementNamestringName of the parent engagement
audioFileNamestringOriginal audio file name
audioDateISO 8601Date the audio was recorded
executiveNamestringName of the executive evaluated
durationInSecondsnumberDuration of the evaluated conversation
statestringPending | Processing | Completed | Failed
sentimentstringPositive | Neutral | Negative
averageNotenumberAverage score across all evaluation criteria
isAICallbooleanWhether this was an AI-generated call
campaignIdstringAssociated campaign ID
resultsobjectDetailed evaluation results and scores
createdAtISO 8601Timestamp when the evaluation was created

Example Request

curl https://api.auralytik.com/v1/evaluations?state=Completed&sentiment=Positive&page=1&pageSize=10 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Example Response

{
  "data": [
    {
      "id": "eval_abc123",
      "engagementId": "eng_456",
      "engagementName": "Q1 Quality Review",
      "audioFileName": "call_20240115_143022.wav",
      "audioDate": "2024-01-15T14:30:22Z",
      "executiveName": "Maria Lopez",
      "durationInSeconds": 245,
      "state": "Completed",
      "sentiment": "Positive",
      "averageNote": 8.5,
      "isAICall": false,
      "campaignId": "camp_789",
      "results": {
        "greeting": 9,
        "resolution": 8,
        "compliance": 9,
        "empathy": 8
      },
      "createdAt": "2024-01-15T15:00:00Z"
    }
  ],
  "page": 1,
  "pageSize": 10,
  "totalCount": 142
}

More evaluation endpoints coming soon

Bulk evaluation creation, custom scoring templates, and evaluation export APIs are being developed.

Request API Access