Get Assistant
Retrieve a single assistant by ID or UUID.Endpoint
GET /v1/assistants/{assistant_id}
Assistant UUID
Example Request
curl -X GET https://api.vonative.com/v1/assistants/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
-H "Authorization: Bearer YOUR_TOKEN"
Response
{
"success": true,
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Customer Support Bot",
"status": "published",
"organization_id": "org-uuid-1234",
"owner_id": "user-uuid-5678",
"model": {
"provider": "openai",
"model": "gpt-4o",
"temperature": 0.7,
"max_tokens": 250
},
"voice": {
"provider": "11labs",
"voice_id": "21m00Tcm4TlvDq8ikWAM"
},
"transcriber": {
"provider": "deepgram",
"model": "nova-2",
"language": "en"
},
"first_message": "Hello! How can I help you today?",
"first_message_mode": "assistant-speaks-first",
"max_duration_seconds": 600,
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:30:00Z"
}
}
Errors
| Status | Description |
|---|---|
404 | Assistant not found or belongs to another organization |

