Everything you need to get started and integrate with our API
Sign up for a free account and get your API key
// Dashboard -> Settings -> API Keys API_KEY: "sk_live_xxxxxxxxxxxxx"
Send a message and get an instant response
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'
})
})Get the intelligent response from the system
{
"success": true,
"response": "Hello! How can I help you?",
"session_id": "user_123",
"timestamp": "2024-11-30T12:00:00Z"
}