Comprehensive Documentation

Everything you need to get started and integrate with our API

Get Started in 5 Minutes

1

Get Your API Key

Sign up for a free account and get your API key

// Dashboard -> Settings -> API Keys
API_KEY: "sk_live_xxxxxxxxxxxxx"
2

Make Your First Call

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'
  })
})
3

Receive Response

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"
}

Ready to Start?

Get your API Key and start developing now