Login
Agents Channels Features Try Demo
Multi-Channel AI • Powered by GPT-4o

Your AI
Communication Team

AI agents that connect via Phone, SMS, WhatsApp, and Email.
Family check-ins. Employee sentiment. Sales pipeline.
Competitive intel. All on autopilot.

4 Channels
2 Languages
6 Agent Types
🤖
TalkHub AI Agent
Calling...
Channels

One Platform, Four Channels

Reach your contacts on their preferred channel. All conversations tracked in one unified system.

📞

Phone Calls

AI voice calls with sub-600ms latency. Natural conversations in German and English via Vapi.ai.

💬

SMS

Text-based conversations via Sipgate. Perfect for quick check-ins and automated updates.

💚

WhatsApp

WhatsApp Business integration for global reach. Rich media support and read receipts.

📧

Email

Professional email conversations via Resend. Full HTML support and email threading.

Agents

Meet Your AI Team

Six specialized agents, each designed for a specific type of conversation.

🏠

Family & Friends

Stay connected with the people who matter. Automated check-ins via phone, SMS, or WhatsApp with warmth and empathy.

Personal
👥

Employee Check-in

Understand sentiment, workload, and morale. Get honest feedback through natural, confidential conversations.

HR & Culture
💼

Sales Pipeline

Get deal updates without the meetings. Your AI contacts reps and delivers structured pipeline reports to your inbox.

Revenue
🔍

Competitive Intel

Learn why you win and why you lose. Debrief conversations that surface competitive insights and market positioning data.

Strategy
📞

Prospect Outreach

Book meetings while you sleep. AI-driven outreach calls and messages that qualify leads and schedule appointments.

Growth
📥

Inbound Secretary

Never miss a message again. Professional AI receptionist that handles inquiries across all channels and routes important contacts.

Operations
Process

How It Works

Three steps. Zero complexity. Real conversations.

01
🎯

Choose Agent & Channel

Simple API call or chat command. Pick your channel (Phone/SMS/WhatsApp/Email), select an agent type, and optionally add context.

02
🗣️

AI Has a Natural Conversation

Your agent initiates contact and converses naturally in German or English. Every interaction feels human, whether voice or text.

03
📧

Get a Summary Email

Full transcript, sentiment analysis, action items, and a concise summary — delivered to your inbox within seconds of completion.

Capabilities

Built for Real Conversations

Enterprise-grade multi-channel AI, not a toy demo.

🎙️

Natural Voice

Powered by Deepgram STT + GPT-4o + ElevenLabs. Phone conversations indistinguishable from human callers.

🇩🇪

German & English

Native fluency in both languages across all channels. Automatic language detection and seamless switching.

📧

Post-Conversation Summaries

Beautiful email reports with transcript, summary, sentiment analysis, and action items for every interaction.

🔐

Secure & Private

API key authentication. End-to-end encryption. No conversation data stored unless you explicitly enable it.

Sub-600ms Latency

Voice response time so fast conversations feel natural. No awkward pauses or robotic delays.

📊

Sentiment Analysis

AI-powered mood detection across all channels. Know how people really feel from tone and content.

🔗

Unified Tracking

All conversations across all channels in one system. Complete conversation history, cross-channel threading.

🌍

Global Reach

WhatsApp Business for worldwide messaging. SMS and phone support for German and international numbers.

Try It

Try a Demo Call

Enter your phone number and our AI agent will call you right now. Free — one demo per number per day.

International format (E.164)
Full Access

Need Unlimited Access?

Register with your @link11.com email to get your API key. Unlimited access, all 6 agents, all 4 channels, full API access.

Only @link11.com emails are accepted. API key will be sent to your inbox.
🔑
talkhub_••••••••
Developer

API Reference

One endpoint per channel. One API key. Start communicating in seconds.

POST /call Trigger an outbound call
bash
curl -X POST https://talk.lynk.run/call \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your_api_key" \
  -d '{
    "assistantType": "sales",
    "phoneNumber": "+4917012345678",
    "context": "Ask about the Telekom deal status"
  }'
POST /sms/send Send an SMS message
bash
curl -X POST https://talk.lynk.run/sms/send \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your_api_key" \
  -d '{
    "to": "+4917012345678",
    "message": "Your meeting is confirmed for 3pm."
  }'

Parameters

assistantType required string

One of: family, employee, sales, intel, prospect, inbound

phoneNumber required string

E.164 format phone number (e.g., +4917012345678)

context string

Additional context injected into the agent's system prompt for this conversation

GET /calls List recent calls
bash
curl https://talk.lynk.run/calls?limit=10 \
  -H "X-API-Key: your_api_key"