Ping
Health and connectivity probe.
Confirms the Blueticks API server is live (api: "ok") and lists the WhatsApp engines currently connected to this account in whatsapp_connections. Each connection is labelled gateway (a remote, server-side engine — the Blueticks 24/7 gateway / baileys pod) or regular (the user's own WhatsApp Web browser extension). An empty whatsapp_connections array means no WhatsApp is connected — this is not an error, and message explains it. Requires a valid API key; no scope required.
Request
curl -X GET "https://api.blueticks.co/v1/ping"{
"success": true,
"data": {
"api": "ok",
"account_id": "string",
"whatsapp_connections": [
{
"id": "string",
"type": "gateway",
"connected": true
}
],
"message": "string"
}
}{
"success": false,
"error": {
"code": "string",
"message": "string",
"request_id": "string",
"details": [
{
"path": "string",
"code": "string",
"message": "string"
}
]
}
}Response
Response Body
application/json
application/json