v2.0.0 Released β€” 120+ API Endpoints Β· AI Features Β· Bot SDK

The Most Secure
Messaging Platform
Ever Built

WhatsApp + Telegram + Discord β€” combined into one. End-to-end encrypted. Built by DEATH LEGION Team.

120+
API Endpoints
41
Database Tables
8
Platforms
∞
Possibilities

All Systems Operational Β· API Live at dl-chat-api.death-legion-dlchat.workers.dev
πŸ“¦ Downloads

Get DL Chat on Every Platform

Native apps for Android, Windows, and Linux. Web app available instantly.

NEW βœ“
πŸ€–
Android
v1.0.0 Β· Android 7.0+
Full-featured Android app with push notifications, biometric lock, background calls, and all features.
⬇️ Download APK
~30MB Android 7.0 (API 24)+
βœ“
πŸͺŸ
Windows
v1.0.0 Β· Windows 10+
Native Electron app with system tray, desktop notifications, hardware acceleration, and offline support.
⬇️ Download Installer (.exe)
72MB Windows 10/11 x64
πŸ“¦
Windows (Portable)
v1.0.0 Β· No Install Needed
Portable ZIP β€” run without installation. Perfect for USB drives and restricted environments.
⬇️ Download ZIP
100MB Windows 10/11 x64
🐧
Linux (Debian/Ubuntu)
v1.0.0 Β· amd64
Native .deb package for Debian, Ubuntu, and derivatives. Auto-installs to Applications menu.
⬇️ Download .deb
86MB Debian/Ubuntu amd64
πŸ—œοΈ
Linux (Universal ZIP)
v1.0.0 Β· x64
Universal Linux ZIP that works on any distro. Extract and run β€” no installation needed.
⬇️ Download ZIP
206MB Any Linux x64
Soon
🍎
macOS
v1.0.0 Β· Universal (Intel + Apple Silicon)
Native macOS app with Apple Silicon support, Touch Bar, Continuity Camera, and iCloud sync.
πŸ”’ Requires macOS Build Machine
~80MBmacOS 12+
Soon
πŸ“±
iOS / iPadOS
v1.0.0
Full iOS app with Face ID, widgets, Apple Watch support, and iMessage integration.
πŸ”’ App Store Review Pending
~45MBiOS 15+
LIVE
🌐
Web App
Always Latest
Use DL Chat directly in your browser β€” no download needed. Full PWA with offline support.
πŸš€ Open Web App
PWAChrome/Firefox/Safari

⚑ Features

Everything You Need,
And More

120+ endpoints. Built on Cloudflare's edge. Unlimited scale.

πŸ”’
End-to-End Encryption
X25519 ECDH key exchange + AES-256-GCM encryption + PBKDF2-SHA256 + HMAC-SHA256 verification. Your messages are unreadable by anyone β€” including us.
X25519 AES-256-GCM Zero-Knowledge
πŸ€–
AI-Powered Features
Built-in AI assistant (Llama 3.1), smart replies, voice transcription, chat summaries, auto-translation in 31 languages, and AI content moderation.
Llama 3.1 31 Languages AI Moderation
πŸ“ž
Voice & Video Calls
Crystal-clear HD voice and video calls with WebRTC, screen sharing, noise cancellation, group calls up to 100 participants, and background blur.
WebRTC HD Video 100 People
πŸ’¬
Rich Messaging
Text, voice messages with waveforms, images, video, files, polls, locations, stickers, GIFs, reactions, message threads, pinned messages, and bookmarks.
Voice Messages Polls Reactions
πŸ“Έ
Stories & Status
Share photos, videos, and text stories (24h) with your contacts. React to stories with emojis. See who viewed your story. Text with custom backgrounds.
24h Expiry Story Reactions Viewer List
🌐
Servers & Channels
Discord-like servers with unlimited channels, roles, permissions, categories, invite links, webhooks, and bot support. Create communities at scale.
Discord-Like Roles Webhooks
βš™οΈ
Bot Platform
Full Telegram-compatible Bot API with inline keyboards, callbacks, commands, scenes/routers, polling & webhooks. Build powerful bots with our Bot SDK.
Telegram-Like Bot SDK Webhooks
πŸ‘₯
Social Features
Friend system with suggestions, read receipts with βœ“βœ“ indicators, online presence with typing indicators, custom status, bookmarks, and user profiles.
Friends Read Receipts Presence
πŸ“Š
Analytics & Insights
Personal usage stats, chat analytics, server growth tracking, peak activity hours, top senders, message type breakdown, and developer analytics.
Personal Stats Chat Analytics Growth Charts

πŸ”Œ REST API

120+ Endpoints,
Zero Limits

Built on Cloudflare Workers. Global edge network. <50ms response times worldwide.

https://dl-chat-api.death-legion-dlchat.workers.dev/api/v1
πŸ” Authentication
POST/auth/register
POST/auth/login
POST/auth/refresh
POST/auth/logout
POST/auth/2fa/enable
πŸ’¬ Messaging
GET/messages/:chatId
POST/messages/:chatId
POST/reactions/:messageId
GET/threads/:messageId
POST/pinned/:chatId
πŸ€– AI Features
POST/ai/chat
POST/ai/summarize
POST/ai/smart-reply
POST/translate/text
GET/translate/languages
πŸ“Έ Stories
GET/stories/feed
POST/stories
GET/stories/my
GET/stories/:id/views
POST/stories/:id/react
πŸ‘₯ Social
GET/friends
POST/friends/request
GET/bookmarks
POST/invite
POST/invite/:code/join
⚑ Real-time
WS/ws?token=&chatId=
POST/presence/typing
POST/presence/heartbeat
GET/notifications
POST/read-receipts/mark
πŸ“Š Analytics
GET/analytics/me
GET/analytics/chat/:id
GET/analytics/server/:id
GET/search/trending
GET/search/hashtags
πŸ”§ Developer
GET/webhooks
POST/webhooks
GET/polls/:id
POST/scheduled
POST/media/presign

πŸ€– Bot SDK

Build Powerful Bots with
@dlchat/bot-sdk

Telegram-compatible Bot SDK. Familiar API. Unlimited possibilities.

// Install: npm install @dlchat/bot-sdk
import { DLChatBot, Markup, InlineKeyboard } from '@dlchat/bot-sdk';

const bot = new DLChatBot({
  token: 'YOUR_BOT_TOKEN',
  apiUrl: 'https://dl-chat-api.death-legion-dlchat.workers.dev'
});

// Handle /start command
bot.command('start', async (ctx) => {
  await ctx.reply(
    Markup.bold('πŸ‘‹ Welcome to DL Chat Bot!') + '\n\nChoose an option:',
    {
      reply_markup: InlineKeyboard.build([
        [{ text: 'πŸ“š Help', callback_data: 'help' }, { text: 'βš™οΈ Settings', callback_data: 'settings' }],
        [{ text: 'πŸ’¬ Start Chat', callback_data: 'chat' }]
      ])
    }
  );
});

// Handle messages
bot.hears(/hello/i, async (ctx) => {
  await ctx.reply(`Hello, ${ctx.from.first_name}! πŸ‘‹`);
});

// Poll creation
bot.command('poll', async (ctx) => {
  await ctx.sendPoll('What\'s your favorite feature?', [
    'πŸ”’ E2E Encryption', 'πŸ€– AI Assistant', 'πŸ“ž Video Calls', 'βš™οΈ Bot API'
  ]);
});

bot.start(); // Start polling
⌨️
Keyboard Builders
Inline keyboards, reply keyboards, paginator, confirm dialogs
🎭
Scenes & Routers
Multi-step conversation flows with enter/leave hooks
πŸ”
Filters & Middleware
isPrivate, isAdmin, hasMedia, matches, all, any, not
πŸ“
Rich Markup
Bold, italic, code, tables, progress bars, mention, links
πŸš€
Polling & Webhooks
Long polling or webhook mode β€” deploy anywhere
πŸ”§
Full TypeScript
100% typed API with IntelliSense support

πŸ—ΊοΈ Roadmap

What's Coming
Next

We're building fast. New features ship every week.

βœ… SHIPPED
Core API v2.0
120+ endpoints, auth, messaging, calls, bots, reactions, polls, threads, webhooks, scheduled messages
βœ… SHIPPED
Desktop Apps
Windows EXE (installer + portable), Linux DEB, Linux ZIP β€” all built with Electron 32
βœ… SHIPPED
Bot SDK v1.0
@dlchat/bot-sdk β€” Telegram-compatible, TypeScript, scenes, keyboards, filters, markup
βœ… SHIPPED
AI Features
Llama 3.1 chat assistant, smart replies, 31-language translation, chat summaries, voice transcription
βœ… SHIPPED
Stories & Status
24h stories with reactions, viewer lists, text/image/video, audience control
βœ… SHIPPED
Admin Dashboard
Full admin panel at dl-chat-admin.pages.dev β€” user management, analytics, moderation
πŸ”„ IN PROGRESS
Android APK
Native Android app (WebView-based), push notifications, biometric auth, background service
πŸ”„ IN PROGRESS
Humanizer Tool
AI writing humanizer based on 29-pattern detection system β€” removes AI writing patterns
πŸ“… Q3 2025
iOS App
Native iOS/iPadOS app with Face ID, widgets, Apple Watch support
πŸ“… Q3 2025
Group Video Calls
Up to 50-person video calls, screen sharing, virtual backgrounds, recording
πŸ“… Q3 2025
Payments
Send money, split bills, crypto payments, in-chat shop, bot payments
πŸ“… Q4 2025
Mini Apps Platform
Like Telegram Mini Apps β€” web apps inside DL Chat, games, tools, businesses
πŸ“… Q4 2025
Self-Destruct Messages
Timer-based message deletion (1s to 1 week), secret chats mode, screenshot detection
πŸ“… 2026
AI Voice Cloning
Clone your voice for voice messages, AI-powered voice filters, real-time voice changing

πŸ—οΈ Architecture

Built on
Cloudflare's Edge

Zero cold starts. 300+ global PoPs. 99.99% uptime SLA.

⚑
Cloudflare Workers
Edge computing. <50ms globally. 100k req/day free tier. Hono.js framework.
πŸ—„οΈ
Cloudflare D1
SQLite at the edge. 41 tables. 5GB free. ACID compliant. Automatic backups.
⚑
Durable Objects
ChatRoom, CallRoom, Presence objects. Real-time WebSocket coordination. Stateful edge.
🧠
Workers AI
Llama 3.1, M2M100 (translation), Llama Guard (moderation) β€” all running at edge.
πŸ“¦
KV Store
JWT session storage. Rate limiting counters. Cache layer. 100k reads/day free.
🌐
Pages CDN
Landing page, admin dashboard, downloads β€” all on Cloudflare Pages free tier.

DEATH LEGION Team

Building the future of secure communication. DL Chat is 100% proprietary software β€” all rights reserved.

πŸš€ API βš™οΈ Admin ⬇️ Download