Quickstart
An API key and one request — from zero to a delivered WhatsApp message.
Generate an API key
In the dashboard, go toSettings → API & webhooksand create a key. Copy it now — the full value is only shown once.Send a message
tois the recipient's number in international format, no+. Swap in a real number and your key:POST /api/public/v1/messages bashcurl -X POST 'https://api.bigradar.io/api/public/v1/messages' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "to": "919876543210", "text": "Hi from BigRadar!" }'Check the response
A200means BigRadar accepted and queued the message — not that it's delivered yet.conversation_idis the thread this message started or joined in your inbox.200 OK json{ "success": true, "message": "Message sent successfully", "data": { "message_id": "wamid.HBgM...", "conversation_id": "a1b2c3d4-...", "to": "919876543210", "status": "queued", "timestamp": "2026-06-25T12:30:45Z" } }
Where to go next
Send media and templates cover richer message types — templates in particular let you message someone outside the 24-hour reply window. To receive replies and delivery events back, see Set up incoming message webhooks.