Connect
Link WhatsApp numbers by QR code or pairing code and manage each number from your workspace.
TextBot
Connect your WhatsApp number, get an API key, send messages, receive replies through webhooks, and manage each workflow from your TextBot account.
Link WhatsApp numbers by QR code or pairing code and manage each number from your workspace.
Send text, media, documents, and button messages through simple GET or POST calls.
Receive inbound replies and file events through structured JSON webhooks.
Track usage, renew access, open support tickets, and keep WhatsApp automation running smoothly.
Create separate keys per number, customer, team, or workflow with quotas and expiry.
Choose a package that fits your number setup, message volume, and automation needs.
Configure inbound message handling, group options, formatting options, and read states.
Create support tickets and track responses.
TextBot creates a workspace, issues the starter API key, emails credentials, and gives the user a clear path to connect WhatsApp and send their first API message.
Choose a starter package and receive credentials by email.
Scan a QR code or use a pairing code from your account.
Use API endpoints for text, files, documents, buttons, and replies.
Select a package to create your TextBot workspace. Prices are shown in USD.
Use GET for small jobs or POST JSON for richer payloads.
GET https://api.textbot.cc/send.php?recipient=49123123123&apikey=YOUR_KEY&text=Hello&json=yes
POST https://api.textbot.cc/api/send
{
"recipient": "+49123123123",
"apikey": "YOUR_KEY",
"text": "See attached",
"file": "https://example.com/image.png"
}
GET /send.php?recipient=49123123123&apikey=YOUR_KEY&text=Continue?&button1=Yes&button2=No&json=yes
{
"type": "text",
"from": "549191919191",
"from_phone": "549191919191",
"from_jid": "549191919191@s.whatsapp.net",
"from_lid": "123456789012345",
"from_name": "Joan",
"to": "54134123123",
"chat_id": "549191919191",
"reply_to": "549191919191",
"reply_to_jid": "549191919191@s.whatsapp.net",
"file": null,
"message": "Text Message received in WhatsApp"
}