كل ما تحتاجه للبدء والتكامل مع API الخاص بنا
سجل حساب مجاني واحصل على مفتاح API الخاص بك
// Dashboard -> Settings -> API Keys API_KEY: "sk_live_xxxxxxxxxxxxx"
أرسل رسالة واحصل على رد فوري
fetch('https://api.seenjeem.com/v1/chat', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
message: 'Hello!',
session_id: 'user_123'
})
})احصل على الرد الذكي من النظام
{
"success": true,
"response": "Hello! How can I help you?",
"session_id": "user_123",
"timestamp": "2024-11-30T12:00:00Z"
}