AI-Powered Real-time Voice Interview System
Gerçek zamanlı sesli mülakat ve otomatik aday değerlendirme platformu
Gelişmiş yapay zeka ile gerçek zamanlı sesli mülakat sistemi
WebSocket ile düşük gecikmeli sesli iletişim
Otomatik değerlendirme ve puanlama sistemi
API key authentication ve rate limiting
Kullanım bazlı esnek kredi sistemi
Tüm konuşma kayıtları ve transcript
curl https://interviewer.hiri.ai/api/credits/balance \ -H "X-API-Key: your-api-key-here"
{
"balance": 850,
"stats": {
"total_purchased": 1000,
"total_used": 150,
"purchase_count": 2,
"usage_count": 45
}
}curl -X POST https://interviewer.hiri.ai/api/credits/purchase \
-H "Content-Type: application/json" \
-H "X-API-Key: your-api-key-here" \
-d '{
"amount": 500,
"payment_method": "credit_card"
}'curl https://interviewer.hiri.ai/api/credits/transactions?limit=50 \ -H "X-API-Key: your-api-key-here"
curl -X POST https://interviewer.hiri.ai/api/keys \
-H "Content-Type: application/json" \
-H "X-Admin-Key: your-admin-key-here" \
-d '{
"name": "Production Key",
"rate_limit": 1000,
"expires_in_days": 365
}'POST /api/candidates ile adayın bilgilerini kaydedin
POST /api/positions ile iş pozisyonu ve gereksinimlerini belirleyin
POST /api/interviews ile aday ve pozisyonu eşleştirin (10 kredi)
POST /api/interviews/:id/start ile AI sorularını hazırlayın (50 kredi)
wss://interviewer.hiri.ai/ws/interview ile gerçek zamanlı mülakat yapın
AI otomatik değerlendirme ve puanlama yapar (3 kredi/soru)
GET /api/interviews/:id/result ile detaylı rapor alın
curl https://interviewer.hiri.ai/api/interviews/789-interview-id/transcript \ -H "X-API-Key: your-api-key-here"
{
"interview_id": "789-interview-id",
"candidate": {
"name": "Ahmet Yılmaz",
"email": "ahmet@example.com"
},
"position": {
"title": "Senior Frontend Developer"
},
"messages": [
{
"id": "msg-1",
"speaker": "ai",
"message": "Merhaba, mülakatınıza hoş geldiniz...",
"timestamp": "2025-10-25T10:35:00.000Z"
},
{
"id": "msg-2",
"speaker": "candidate",
"message": "Merhaba, teşekkür ederim...",
"timestamp": "2025-10-25T10:35:15.000Z"
}
],
"total_messages": 47
}