curl --request GET \
--url https://atoms-api.smallest.ai/api/v1/conversation/{id} \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"_id": "abc123",
"callId": "abc123",
"agent": {
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"backgroundSound": true,
"organization": "<string>",
"workflowId": "<string>",
"workflowType": "workflow_graph",
"createdBy": "<string>",
"globalKnowledgeBaseId": "<string>",
"language": {
"enabled": "en",
"switching": {
"isEnabled": true,
"minWordsForDetection": 123,
"strongSignalThreshold": 123,
"weakSignalThreshold": 123,
"minConsecutiveForWeakThresholdSwitch": 123
},
"supported": [
"<string>"
]
},
"synthesizer": {
"voiceConfig": {
"model": "waves_lightning_large",
"voiceId": "nyah",
"gender": "female"
},
"speed": 1.2,
"consistency": 0.5,
"similarity": 0,
"enhancement": 1
},
"slmModel": "electron",
"defaultVariables": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"status": "completed",
"duration": 300,
"recordingUrl": "<string>",
"from": "<string>",
"to": "<string>",
"transcript": "<array>",
"average_transcriber_latency": 123,
"average_agent_latency": 123,
"average_synthesizer_latency": 123,
"type": "telephony_inbound"
}
}curl --request GET \
--url https://atoms-api.smallest.ai/api/v1/conversation/{id} \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"_id": "abc123",
"callId": "abc123",
"agent": {
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"backgroundSound": true,
"organization": "<string>",
"workflowId": "<string>",
"workflowType": "workflow_graph",
"createdBy": "<string>",
"globalKnowledgeBaseId": "<string>",
"language": {
"enabled": "en",
"switching": {
"isEnabled": true,
"minWordsForDetection": 123,
"strongSignalThreshold": 123,
"weakSignalThreshold": 123,
"minConsecutiveForWeakThresholdSwitch": 123
},
"supported": [
"<string>"
]
},
"synthesizer": {
"voiceConfig": {
"model": "waves_lightning_large",
"voiceId": "nyah",
"gender": "female"
},
"speed": 1.2,
"consistency": 0.5,
"similarity": 0,
"enhancement": 1
},
"slmModel": "electron",
"defaultVariables": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"status": "completed",
"duration": 300,
"recordingUrl": "<string>",
"from": "<string>",
"to": "<string>",
"transcript": "<array>",
"average_transcriber_latency": 123,
"average_agent_latency": 123,
"average_synthesizer_latency": 123,
"type": "telephony_inbound"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The callId of the conversation. You can get the callId from the conversation logs.
Successful response
true
Show child attributes
The ID of the conversation
"abc123"
The ID of the conversation
"abc123"
Show child attributes
The ID of the agent
The name of the agent
The description of the agent
Whether ambient background sound is enabled during calls
The organization ID of the agent
The workflow ID of the agent
The type of workflow used by the agent
workflow_graph, single_prompt The user ID of the user who created the agent
The global knowledge base ID of the agent
The language configuration of the agent
Show child attributes
The language of the agent
en, hi, ta, kn Language switching configuration for the agent
Show child attributes
Whether language switching is enabled for the agent
Minimum number of words required for language detection
Threshold for strong language signal detection
Threshold for weak language signal detection
Minimum consecutive detections required for weak threshold language switch
The supported languages of the agent
The synthesizer (TTS) configuration of the agent
Show child attributes
The voice configuration of the synthesizer
Show child attributes
The model of the synthesizer
waves, waves_lightning_large, waves_lightning_large_voice_clone The voice ID of the synthesizer.
male, female The speed of the synthesizer
The consistency of the synthesizer
The similarity of the synthesizer
The enhancement of the synthesizer
The LLM model to use for the agent. LLM model will be used to generate the response and take decisions based on the user's query.
electron, gpt-4o The default variables to use for the agent. These variables will be used if no variables are provided when initiating a conversation with the agent.
The date and time when the agent was created
The date and time when the agent was last updated
The status of the conversation
"completed"
The duration of the conversation in seconds
300
The recording URL of the conversation
The phone number of the caller
The phone number of the callee
The transcript of the conversation
The average time taken by the TTS to transcribe the conversation
The average time taken by the LLM to respond to the conversation
The average time taken by the TTS to synthesize the conversation
The type of the conversation
telephony_inbound, telephony_outbound, chat