Every endpoint on this page requires either a Clerk-issued JWT (
Authorization: Bearer <token>) or
an organization API key (x-api-key: pk_…). Anonymous calls return 401 Unauthorized. See
Authentication for the full setup.
All four surface in the
analysis block of the session.ended webhook and in GET /api/v1/chat/sessions/{id}.
Intent Recognition
Classifies the purpose of the conversation against a list of intents you define under Custom Intent (comma-separated). Example for a delivery-confirmation use case:string
Best-fit intent across the whole call.
number
Confidence score,
0 – 1.string
Short LLM-generated rationale for the classification.
string
Best-fit on the trigger message (less useful for voice).
Resolution Analysis
Classifies whether the call achieved its objective, against a resolution definition you provide. Click + Add Resolution Definition and describe in plain language what counts as resolved. Example resolution definition:Call is resolved if the customer confirmed a delivery slot for the order. If a slot was discussed but not finalised, markThe payload then carries:PARTIALLY_RESOLVED. If the customer refused or the call dropped, markUNRESOLVED.
enum
RESOLVED / PARTIALLY_RESOLVED / UNRESOLVED / NOT_APPLICABLE.number
0 – 1 confidence in the verdict.string[]
The checklist points met during the call.
string[]
Quoted turns from the transcript supporting the verdict.
string
Short rationale.
Sentiment
Returns a score and label per call:enum
POSITIVE / NEUTRAL / NEGATIVE.number
-1.0 – +1.0.string
ISO-639-1 code; useful when callers may switch language mid-conversation.
Data Extraction
Define a structured schema and Agntix will pull the values out of the transcript. Click + Add Data Extraction and define one schema entry at a time. Each entry asks for:- Name — the JSON key that will appear under
analysis.extractedData.<name>in the webhook / session API. - Description — a one-line hint that tells the analysis model what to look for. Treat this like a mini-prompt: the more precise, the better the extraction.
- Type —
String,Number,Boolean, orEnum(forEnumyou’ll also be asked for the allowed values).
Extracted values surface under
analysis.extractedData.<name> in the webhook and the session detail API:
Combined analysis block
When all four toggles are on, the full analysis block looks like this:
Next steps
Webhook events
See the full
session.ended payload that carries the analysis block.Get Session
Pull the same
analysis block via REST when you need it on demand.