Live Chat for Your Website
Register your website, create chat instances via API, and embed with light or dark theme. Simple and free forever.
"id": 123,
"full_name": "John Doe",
"username": "john",
"email": "[email protected]",
"avatar_url": "https://..."
}
"success": true,
"token": "CHAT_TOKEN",
"chat_id": 1
}
Everything You Need
Simple API, powerful features, unlimited possibilities.
Simple API
One API endpoint to create chat instances. Get token and embed instantly.
Theme Choice
Choose between light and dark themes to match your website design.
100% Free
No limits, no fees, no hidden costs. Use it on unlimited websites.
Mobile Ready
Chat iframe works perfectly on all devices and screen sizes.
Dashboard
Manage your registered websites and view chat activity.
Unique Tokens
Each chat session gets its own secure token for isolation.
How It Works
Three simple steps to add live chat to your website using our API.
Register Website
Sign up and register your website in our dashboard to get your website token.
Dashboard Registration
Create Chat
Use API to create chat for each visitor. Get unique chat token in response.
POST /api/websites/chat/create
Embed Chat
Use chat token in iframe with your choice of light or dark theme.
&theme=light or &theme=dark
API Response Example:
POST /api/websites/chat/create
// Response:
{
"success": true,
"token": "CHAT_TOKEN",
"chat_id": 1
}
Embed Options:
Tailwind CSS:
<iframe
class="w-full h-[70vh]"
src="https://chat.gliders.dev/chat?token=TOKEN&theme=light"
allow="microphone; clipboard-read; clipboard-write"
></iframe>
Standard HTML:
<iframe
width="100%"
height="70vh"
src="https://chat.gliders.dev/chat?token=TOKEN&theme=dark"
allow="microphone; clipboard-read; clipboard-write"
></iframe>
API Documentation
Integrate chat notifications directly into your application.
Check Unread Notifications
GETEndpoint:
/api/client/notification?token={your_chat_token}
Check if a specific chat session has new, unread messages from an agent.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| token | String | Yes | The unique identifier token for the chat session. |
Responses
200 OK Success
{
"status": "success",
"has_notification": true
}
400 Bad Request Missing Token
{
"status": "error",
"message": "Token is required"
}
404 Not Found Invalid Token
{
"status": "error",
"message": "Chat not found"
}
Ready to Add Live Chat?
Register your website, create chats via API, and embed with your preferred theme. It's that simple.