v1
latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KBRetrieve a specific voice agent by ID
get/v1/voice-agents/{voiceAgentId}
Path parameters
voiceAgentIdstring required
Response
Successful response
Example response
{
"data": {
"outcomeResponseShape": {
"type": "object",
"properties": {
"test": {
"type": "number",
"description": "Hello world from Hamsa AI!"
}
},
"required": [
"test"
]
},
"webhookUrl": "https://example.com/webhook",
"webhookAuth": {
"authKey": "Token",
"authSecret": "Secret"
},
"llmConfig": {
"provider": "OpenAI",
"modelName": "GPT-4.1",
"baseUrl": "https://api.custom-llm.com/v1",
"apiKey": "sk-...",
"temperature": 0.2
}
}
}