Quick Start
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can get an API key from your Settings.

Make your first request
To make your first request, send an authenticated request to the messages endpoint. This will send a text
message to the user.
Send a text message
POST
https://api.qikchat.in/v1/messages
To send a message, use the request URL and the following body parameters.
Request Example
{
"to_contact": "8080808080",
"type": "text",
"text": {
"body": "Hey There!"
}
}
Headers
QIKCHAT-API-KEY*
string
place API key
Request Body
to_contact*
string
customer whatsapp number you want to send message
type*
string
text
text*
object
contains body field
A successful response includes a data object with an ID for the message sent.
Last updated
Was this helpful?